Skip to content

Instantly share code, notes, and snippets.

@CUEICHI
Last active February 7, 2020 08:32
Show Gist options
  • Select an option

  • Save CUEICHI/dfc33dc7a1331314fac1429ba9df45d9 to your computer and use it in GitHub Desktop.

Select an option

Save CUEICHI/dfc33dc7a1331314fac1429ba9df45d9 to your computer and use it in GitHub Desktop.
Visual Studio Code の LaTeX環境で latexmkを使ってcompileするレシピ.
{
"files.autoSave": "onFocusChange",
"files.autoSaveDelay": 100,
"latex-workshop.latex.tools": [
{
"command": "latexmk",
"args": [
"%DOC%"
],
"name": "latexmk"
}
],
"latex-workshop.latex.recipes": [
{
"name": "latexmk",
"tools": [
"latexmk"
]
},
],
"latex-workshop.view.pdf.viewer": "tab",
"editor.renderControlCharacters": true,
"gitlens.defaultDateStyle": "absolute"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment