TEX2020使用\fdusetup{设置参考文献格式,无法再文中出现参考文献,没有编译错误

2021-01-06 19:45发布

## 编译环境 操作系统 * [x ] Windows 7/8/10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [x ] TexLive ...

## 编译环境 操作系统 * [x ] Windows 7/8/10 * [ ] macOS * [ ] Linux `若需勾选,请把[ ]改成[x]` Tex发行版 * [x ] TexLive `2020` * [ ] MikTeX `版本号` * [ ] CTeX `若需勾选,请把[ ]改成[x]` ## 我的问题 使用jabref编写了myreference.bib文献, \fdusetup{ bib-backend = bibtex, bib-style = numerical, bib-resource = {myreference}, } 定义参考文献格式 最后 \printbibliography 编译无错误,但文中没有参考文献,使用\cite也无法引用
3条回答
这里给一个最小工作示例 ``` \documentclass{fduthesis} \fdusetup{ style/bib-backend = biblatex, style/bib-resource = example.bib } \begin{document} \chapter{欢迎} \section{Welcome} 你好 \LaTeX{}\cite{adams2003sobolev} \printbibliography \end{document} ``` 其中 `example.bib` 是 ``` @Book{adams2003sobolev, title = {Sobolev Spaces}, publisher = {Academic Press}, year = {2003}, author = {Adams, R. A. and Fournier, J. J. F.}, series = {Pure and Applied Mathematics}, address = {New York}, isbn = {9780080541297}, } ``` 你试试看能不能正确编译

一周热门 更多>