Created
May 14, 2022 02:10
-
-
Save fky2015/76c8d2b358264f0cfaf80b8dcf68b3f4 to your computer and use it in GitHub Desktop.
Compile BIThesis using VSCode LaTeX Workshop
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":[ | |
"-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