Skip to content

Instantly share code, notes, and snippets.

@nevalsar
Created January 5, 2022 20:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nevalsar/33132e813960536125358a5feeffbef1 to your computer and use it in GitHub Desktop.
Save nevalsar/33132e813960536125358a5feeffbef1 to your computer and use it in GitHub Desktop.
gists-for-medium
"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