我喜欢使用 bibtex 来生成参考书目,因为它会帮我处理所有格式。我想知道是否/如何轻松地将参考书目信息插入文章或文档的其他部分。例如,如果我想轻松更新简历中的出版物列表,或者在资助提案中列出我的出版物。有没有简单的方法可以做到这一点?
答案1
我也建议使用biblatex
而不是 bibtex。请查找一些有关如何切换的信息这里。它允许使用\fullcite
,这很棒。它将单个引用放在文本中的任何位置。因此,它非常适合资助提案和简历,您可能需要“五篇最重要的出版物”或类似的东西。我举了一个小例子:
乳胶文件是:
\documentclass{article}
\usepackage[backend=biber]{biblatex}
\addbibresource{manuell.bib}
\usepackage{lipsum}
\begin{document}
\lipsum[1]
I made the following publication when I was very young:
\begin{itemize}
\item \fullcite{Reynolds:1950p3730}
\end{itemize}
\lipsum[2]
\end{document}
和.bib
文件:
@article{Reynolds:1950p3730,
author = {C Reynolds and B Serin and W Wright and L Nesbitt},
journal = {Phys. Rev.},
title = {Superconductivity of isotopes of mercury},
pages = {487},
doi = {10.1063/1.3332575},
volume = {78},
year = {1950},
URL = {http://link.aps.org/doi/10.1103/PhysRev.78.487}
}