这可能是一个愚蠢的问题,但我想包含一个参考文献但实际上不在文章中引用它,我只是想将它添加到参考文献中。
我正在使用 .tex 文件中包含的 .bib 文件,并且条目是一个标准条目,例如:
@misc{xyz,
author = "NAME",
date = "YEAR",
howpublished = "personal communication"
}
答案1
用于\nocite{keyname}
参考文献中的单个输入,而不在文档中标记。要在文件中.bib
使用标记任何键\nocite{*}
\documentclass{article}
\begin{filecontents}{mysuperbib.bib}
@misc{xyz,
author = "A.N.{A}uthor",
date = "2525",
howpublished = "personal communication"
}
\end{filecontents}
\begin{document}
\nocite{xyz}
\bibliographystyle{alpha}
\bibliography{mysuperbib}
\end{document}