Skip to content

Instantly share code, notes, and snippets.

@maruta
Created December 2, 2019 02:29
Show Gist options
  • Save maruta/6937c68db56529936862ac620b1baae7 to your computer and use it in GitHub Desktop.
Save maruta/6937c68db56529936862ac620b1baae7 to your computer and use it in GitHub Desktop.
LaTeX Workshop で素の Latexmk を呼び出すための settings.json への記述
{
// 他の設定の続きに以下の設定を追記,追記の際,区切りのカンマ(,)が必要な場合もあるので注意
"latex-workshop.latex.tools": [
{
"command": "latexmk",
"args": [],
"name": "latexmk"
}
],
"latex-workshop.latex.recipes": [
{
"name": "toolchain",
"tools": [
"latexmk"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment