Created
December 2, 2019 02:29
-
-
Save maruta/6937c68db56529936862ac620b1baae7 to your computer and use it in GitHub Desktop.
LaTeX Workshop で素の Latexmk を呼び出すための settings.json への記述
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
// 他の設定の続きに以下の設定を追記,追記の際,区切りのカンマ(,)が必要な場合もあるので注意 | |
"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