[Tex/LaTex] How to create two separate bibliographies in the same document

biblatexbibliographiesnatbib

At the end of my paper I would like to create two separated lists of references, since I prefer to distinguish usual book references from the references of pictures I included.

I already tried several ways, but mostly they are only appropriate for bibliographies in certain sections.

Current situation:

I have two different files

  • thesis.bib contains the book and journal references I used for my text
  • figures.bib contains the references, where I found the images used in the paper

At the moment I get the "Bibliography" by writing

\usepackage{natbib}
\bibpunct{[}{]}{,}{a}{}{;}

at the beginning of my document and

\addcontentsline{toc}{chapter}{\numberline{}Bibliography}
\bibliographystyle{alphadin}
\nocite{*}
\bibliography{thesis}

at the end of it. However, if I want to include a "References of Figures" the same way, it just adds another copy of the previously listed "Bibliography".

\addcontentsline{toc}{chapter}{\numberline{}References of Figures}
\bibliographystyle{alphadin}
\nocite{*}
\bibliography{figures}

So how can I add the list of "References of Figures" after the normal bibliography?

Best Answer

I could solve my problem with multibib. At the end I had two different bibliograhies:

  • Bibliography (which contained all referces I used in my text)
  • References of Figures (refers to figures)

This is how it is done:

\usepackage[resetlabels,labeled]{multibib}
\newcites{Fig}{References of Figures}


\begin{document}

\bibliographystyleFig{alpha}
\bibliographyFig{figures}

\bibliographystyle{alpha}
\bibliography{thesis}

\end{document}

In the document write

\cite{---}

to cite books, articles etc. for the text, and

\citeFig{---}

in order to create references to figures.