We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在vscode+texlive环境下运行可能会遇到\bibliography报错can be used only in preamble 是因为需要把编译链中的bibtex换成biber 在setting.json设置中,"latex-workshop.latex.tools"里增加
{ "name": "biber", "command": "biber", "args": [ "%DOCFILE%" ] }
在"latex-workshop.latex.recipes"里增加
{ "name": "xelatex -> biber -> xelatex*2", "tools": [ "xelatex", "biber", "xelatex", "xelatex" ] }
然后编译的时候点击这个新设置的编译链,就可以成功运行了 个人尝试,仅供参考~
The text was updated successfully, but these errors were encountered:
谢谢,已经在README中补充~
Sorry, something went wrong.
For TeXstudio follow the following procedure
Options > Configure TeXstudio > Build > Default Compiler > Click Configure icon and make the following changes:
No branches or pull requests
在vscode+texlive环境下运行可能会遇到\bibliography报错can be used only in preamble
是因为需要把编译链中的bibtex换成biber
在setting.json设置中,"latex-workshop.latex.tools"里增加
在"latex-workshop.latex.recipes"里增加
然后编译的时候点击这个新设置的编译链,就可以成功运行了
个人尝试,仅供参考~
The text was updated successfully, but these errors were encountered: