Skip to content

Instantly share code, notes, and snippets.

@fky2015
Created May 14, 2022 02:10
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 fky2015/76c8d2b358264f0cfaf80b8dcf68b3f4 to your computer and use it in GitHub Desktop.
Save fky2015/76c8d2b358264f0cfaf80b8dcf68b3f4 to your computer and use it in GitHub Desktop.
Compile BIThesis using VSCode LaTeX Workshop
{
"latex-workshop.latex.tools":[
{
"name":"latexmk",
"command":"latexmk",
"args":[
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-xelatex",
"-outdir=%OUTDIR%",
"-cd",
"%DOC%"
]
},
{
"name":"xelatex",
"command":"xelatex",
"args":[
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-pdf",
"-outdir=%OUTDIR%",
"-cd",
"%DOC%"
],
"env":{
}
},
{
"name":"biber",
"command":"biber",
"args":[
"%DOCFILE%"
],
"env":{
}
}
],
"latex-workshop.latex.recipes":[
{
"name":"latexmk",
"tools":[
"latexmk"
]
},
{
"name":"xelatex -> biber -> xelatex * 2",
"tools":[
"xelatex",
"biber",
"xelatex",
"xelatex"
]
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment