使用 BibTeX 对参考文献进行分组

使用 BibTeX 对参考文献进行分组

我正在使用 BibTeX 来维护我的参考文献。

我的档案里有很多书.bib,但其中一些书是我的主要资料来源。

我可以将我的参考文献分为“主要来源”和“次要来源”吗?

我正在寻找的是选择每个 bibtex 条目所属的组,然后打印分组的参考文献而不是仅打印默认参考文献。

答案1

您可以尝试多围兜包。很难给你一个最小的工作示例,因为你需要你的.bib文件和multibib.sty编译,但它看起来像这样:

\documentclass{report}

\usepackage{multibib}
\newcites{PS}{Primary Sources}
\newcommand{\bibfile}{/path/to/your/bibfile} 

\begin{document}

The best book to read is \citePS{citation1}. 
Some secondary stuff to look at is \cite{citation2}.

\bibliographystylePS{plain}
\bibliographyPS{\bibfile}

\bibliographystyle{plain}
\bibliography{\bibfile}

\end{document}

然后,如果包含此内容的文件被称为example.tex,则可以像这样进行编译:

latex example
bibtex example
bibtex PS
latex example
latex example

另请参阅例如这些帖子

相关内容