论文中的多个参考书目

论文中的多个参考书目

当我撰写博士论文手稿时,我遇到了一个“LaTeX”障碍。我的论文的第 2、3 和 4 章将是一篇已发表文章的副本。因此,我希望本章的每一章都以文章的参考书目结尾。

我还希望在论文末尾列出我在引言(第 1 章)以及第 5 至 7 章以及附录中使用的参考文献的参考书目。

我可以使用\includepdf文章,但这会删除章节内的超链接,所以我想避免这种情况。

怎样才能在单个 tex 文档中包含多个参考书目。

附言:我不介意将我的所有.bib 文件合并为一个,这样不会有冲突。

答案1

您可以使用多围兜包来在同一个文档内定义多个书目。

以下是 MWE:

\documentclass{article}
\usepackage{multibib}
\newcites{ltex}{\TeX\ and \LaTeX\ References}
\begin{document}
References to the \TeX book \citeltex{Knuth:1991}
and to Lamport’s \LaTeX\ book, which appears
only in the references\nociteltex{Lamport:1994}.
Finally a cite to a Postscript tutorial
\cite{Adobe:1985}.
\bibliographystyleltex{alpha}
\bibliographyltex{lit}
\renewcommand{\refname}{Postscript References}
\bibliographystyle{plain}
\bibliography{lit}
\end{document}

输出将如下所示:

在此处输入图片描述

相关内容