我在环境主文档中编写 LaTeX 参考书目thebibliography
。我遇到了一个问题,我\bibitem
的文档中的条目比我想要引用的条目多。一种解决方案是删除不需要的项目,但 LaTeX 可以自动隐藏未引用的条目吗?
更具体地说,我怎样才能隐藏bar
其出现在参考书目列表中?
\documentclass{article}
\begin{document}
\cite{foo}
\begin{thebibliography}{ab}
\bibitem{foo} foo
\bibitem{bar} bar
\end{thebibliography}
\end{document}