我只想隐藏特定的文内引用,但要在参考书目部分保留此引用。目前,我正在使用\shortcite
引用。
答案1
对于引用<cite>
,您可以添加
\nocite{<cite>}
到您的文档。这类似于\cite{<cite>}
没有在文本中设置实际引用。它将出现在参考书目中。
\documentclass{article}
\usepackage{filecontents}
\begin{filecontents*}{references.bib}
@article{glashow,
author = {Glashow, Sheldon},
title = {Partial Symmetries of Weak Interactions},
journaltitle = {Nucl.~Phys.},
date = 1961,
volume = 22,
pages = {579-588},
}
@article{weinberg,
author = {Weinberg, Steven},
title = {A Model of Leptons},
journaltitle = {Phys.~Rev.~Lett.},
date = 1967,
volume = 19,
pages = {1264-1266},
}
\end{filecontents*}
\begin{document}
\nocite{glashow}% Include in references, but do not \cite in text.
See~\cite{weinberg}.
\bibliographystyle{plain}
\bibliography{references}
\end{document}