Created
January 5, 2022 20:54
-
-
Save nevalsar/33132e813960536125358a5feeffbef1 to your computer and use it in GitHub Desktop.
gists-for-medium
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": [ | |
{ | |
"name": "latexmk", | |
"command": "latexmk", | |
"args": [ | |
"--shell-escape", | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"-pdf", | |
"-outdir=%OUTDIR%", | |
"%DOC%" | |
], | |
"env": {} | |
}, | |
{ | |
"name": "pdflatex", | |
"command": "pdflatex", | |
"args": [ | |
"--shell-escape", | |
"-synctex=1", | |
"-interaction=nonstopmode", | |
"-file-line-error", | |
"%DOC%" | |
], | |
"env": {} | |
}, | |
{ | |
"name": "bibtex", | |
"command": "bibtex", | |
"args": [ | |
"--shell-escape", | |
"%DOCFILE%" | |
], | |
"env": {} | |
} | |
] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment