我一直在互联网上搜索解决此问题的方法,但我无法确定问题所在。
因此,我正在编写一个长文档,其中包含几个 tex 文件。我遵循以下模板:http://www.cs.mun.ca/~donald/metathesis/
它运行得很好,除了我在参考书目方面遇到的问题。我很确定这与我使用的参考书目语法有关,但我找不到问题所在。我还使用了 JabRef 的“检查完整性”功能。没有发现任何重大问题。
尽管如此,似乎只有一个参考书目条目被识别。
例如,唯一可识别的参考是:
@article{RefWorks:doc:5f4be6bfe4b08c34f385f2d8,
author={Francisco Gallardo and Antonio Perez Yuste},
year={2020},
title={SCER Spoofing Attacks on the Galileo Open Service and Machine Learning Techniques for End-User Protection},
journal={IEEE access},
volume={8},
pages={85515-85532},
note={},
doi={10.1109/ACCESS.2020.2992119}
}
一个无法识别的示例(两者都在同一个 bib 文件中,并且我检查了 bib 文件中的名称和 tex 文件中的“cite”命令,两者都相同):
@Article{RefWorks:doc:5f4b40bfe4b077408a2642de,
author = {Gustav Lindstrom and Giovanni Gasparini},
title = {The Galileo satellite system and its security implications},
journal = {The Galileo satellite system and its security implications},
year = {2003},
note = {Bibl. : p. 35-36.;},
}
知道我做错了什么吗?
谢谢
PS: 可能类似于参考书目仅适用于一些链接 但这不一样,因为我的参考书目中没有“_”。我也尝试了建议的解决方案,但它对我的情况不起作用。
答案1
我无法通过以下示例重现您的问题:LaTeX 文件a.tex
:
\documentclass{article}
\begin{document}
First paper \cite{RefWorks:doc:5f4be6bfe4b08c34f385f2d8} and
second paper \cite{RefWorks:doc:5f4b40bfe4b077408a2642de}.
\bibliographystyle{abbrv}
\bibliography{a,b}
\end{document}
BibTeX 文件a.bib
:
@article{RefWorks:doc:5f4be6bfe4b08c34f385f2d8,
author = {Francisco Gallardo and Antonio Perez Yuste},
year = 2020,
title = {SCER Spoofing Attacks on the Galileo Open Service
and Machine Learning Techniques for End-User
Protection},
journal = {IEEE access},
volume = 8,
pages = {85515-85532},
doi = {10.1109/ACCESS.2020.2992119}
}
BibTeX 文件b.bib
:
@Article{RefWorks:doc:5f4b40bfe4b077408a2642de,
author = {Gustav Lindstrom and Giovanni Gasparini},
title = {The Galileo satellite system and its security
implications},
journal = {The Galileo satellite system and its security
implications},
year = 2003,
note = {Bibl. : p. 35-36.;},
}
答案2
我整理了一下。以防别人在论文模板中发现类似的问题http://www.cs.mun.ca/%7Edonald/metathesis/
- 通过制作 make thesis.pdf 运行正常编译
- 手动运行 bibtex:bibtex thesis.aux
- 再次运行make thesis.pdf
完成了。就这样。