在参考书目中包含参考文献,但不在文中引用

在参考书目中包含参考文献,但不在文中引用

这可能是一个愚蠢的问题,但我想包含一个参考文献但实际上不在文章中引用它,我只是想将它添加到参考文献中。

我正在使用 .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}

相关内容