1

As I am writing the manuscript of my PhD thesis, I am facing a `LaTeX' obstacle. Chapter 2,3 and 4 of my thesis will, each, be a copy of a published article. For so, I would like each of this chapter to end with the bibliography of the article.

I also want a bibliography at the end of thesis for the references I used in the introduction ( chapter 1), and in the chapters 5 to 7, plus the appendices.

I could use a \includepdf for the articles but that will remove the hyperref link inside the chapters and for so I would like to avoid that.

How can I have multiple bibliographies in a single tex document.

ps: I don't mind merging all my .bib files into one, there should be no conflict.

Decaying
  • 157
  • 1
  • 2
  • 8
  • 2
    With biblatex you have the structure for multiple bibliographies built in, through the use of refsection or refsegment. Things will depend somewhat on your style of choice and on your document settings (so more info, preferably with a MWE would be a good idea). But you can have a look at, e.g., https://tex.stackexchange.com/q/202281/105447, https://tex.stackexchange.com/q/168713/105447 or https://tex.stackexchange.com/q/19326/105447. – gusbrs Aug 15 '17 at 18:07
  • https://en.wikibooks.org/wiki/LaTeX/Bibliographies_with_biblatex_and_biber#Bibliographies_per_Section_or_Chapter – Johannes_B May 10 '18 at 06:22
  • 5

1 Answers1

1

You can use multibib package to define multiple bibliographies inside the same document.

Here is a 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}

The output will look like this:

enter image description here

Pankaj Singh
  • 107
  • 3
  • Can you provide some more detail to this answer? For example, a minimal document using multibib to produce multiple bibliographies would be helpful for future visitors. – Werner Oct 30 '18 at 04:49