我在 LyX 中的参考书目方面遇到了一点问题:首先,我在文档末尾(在附录中)插入一个 bibtex 书目(插入 -> 列表/目录 -> BibTeX 书目)。为此,我使用由 Citavi 4 生成的 *.bib 文件(此处为 literature.bib)。但我还有一些在 Lyx 中手动创建的参考文献,我想将它们用作参考。现在,我在文档末尾的两页上得到了两个参考书目,每个都以 [1] 开头,但我希望只有一页参考书目,两者合并且没有重叠的 [1] 条目。有没有办法在 LyX 中做到这一点,而不必将我手动添加的参考文献放入 Citavi 中并创建包含所有参考文献的 *bib 文件?
这是最小的 Latex 代码:
\documentclass[british]{report}
\usepackage{babel}
\begin{document}
Look it up here: \cite{name1.2000}
Also interesting: \cite{my-ref}
\appendix
\bibliographystyle{plain}
\bibliography{literature}
\begin{thebibliography}{1}
\bibitem{my-ref}My reference
\end{thebibliography}
\end{document}
干杯
答案1
您可以在 的参数中拥有两个参考书目文件\bibliography
。将您的其他参考资料放在一个文件中myrefs.bib
并调用
\bibliography{literature,myrefs}