Skip to content

关于本地运行main.tex不显示参考文献的问题 #144

Discussion options

You must be logged in to vote

参考文献是通过 biber 编译得到的,只使用 XeLaTeX 单次编译是不够的,正确的编译顺序是

xelatex main
biber main
xelatex main
xelatex main

一般我们可以使用 latexmk 简化这一操作:

latexmk -xelatex main

在 TeXworks 中,不存在这样的默认编译选单,你可能需要使用 "XeLaTeX" 一次后,换成 "Biber",然后再使用 "XeLaTeX" 两次。如果不使用参考文献,可以只使用 “XeLaTeX” 一次。

Replies: 2 comments 2 replies

Comment options

You must be logged in to vote
2 replies
@LogCreative
Comment options

@LogCreative
Comment options

Answer selected by DragonEmperorG
Comment options

You must be logged in to vote
0 replies
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants
Converted from issue

This discussion was converted from issue #143 on December 13, 2022 09:42.