Replies: 2 comments
-
在Visual Studio Code (VSCode) 中更改默认编译器为
{
"latex-workshop.latex.recipes": [
{
"name": "xelatex",
"tools": [
"xelatex"
]
}
],
"latex-workshop.latex.tools": [
{
"name": "xelatex",
"command": "latexmk",
"args": [
"-xelatex",
"-synctex=1",
"-interaction=nonstopmode",
"-file-line-error",
"-outdir=%OUTDIR%",
"%DOC%"
]
}
],
"latex-workshop.latex.recipe.default": "xelatex"
}
这样,你就成功地将 实测有效 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have come across "LaTeX Error: File `sjtuthesis.cls' not found. " via using the latex template on latex.sjtu . My settings followed the suggestions in readme file with xelatex compiler.
Beta Was this translation helpful? Give feedback.
All reactions