main.tex主文件,进行 LaTeX 写作db.bib参考文献文件
- 所有图片放在
./figure文件夹下 - 编译时需要按照 xe->bib->xe->xe 的顺序进行,即编译四次;如果使用 VS Code,示例配置如下
"latex-workshop.latex.recipes": [
{
"name": "xe->bib->xe->xe",
"tools": [
"xelatex",
"bibtex",
"xelatex",
"xelatex"
]
},
]