我已经将自己撰写的论文收录到我的主要 BibTeX 库中。如何在 LaTeX 简历中包含这些论文的完整引文?我不想引文例如“Smith (2000)”在简历中的任何地方,而是将选定条目(我的论文)的完整引文插入到简历的相应部分,作为“我的论文列表”。
答案1
使用\nocite{*}
命令。要获得完整的“参考书目”部分,您可以执行以下操作:
\newpage
\addtocounter{section}{1}
\phantomsection
\addcontentsline{toc}{section}{Title of the section (my papers?)}
\bibliographystyle{acm}
\bibliography{nameofthefile}
\nocite{*}