I'm currently working on my project report. I would like to generate three bibliographies.
I'm using multibib and the document class is scrreprt.
First every entry of Lit.bib should be listed (this works fine up to now).
Afterwards all entries cited by \citePrint{…} should be listed in a separated bibliography.
At the end all entries cited by \citeInternet{…} should be listed in a separated bibliography.
Unfortunately there are no warnings or problems given by latex.
Does anyone have an idea how to solve this problem?
Code: Select all
\usepackage{multibib}
\newcites{Print}{Printmedia}
\newcites{Internet}{Internet}
\begin{document}
…\cite{book01}\nocitePrint{book01}
…\cite{webpage02} \nociteInternet{webpage02}
\chapter{Chapter 1}
\begingroup
\renewcommand\bibname{}
\renewcommand*\chapter{\section{First Bibliography}}
\bibliography{Lit}
\bibliographystyle{unsrtdin}
\endgroup
\newpage
\chapter{Chapter 2}
\renewcommand\bibname{}
\renewcommand*\chapter{\section{Second Bibliography}}
\bibliographyPrint{Lit}
\bibliographystylePrint{alphadin}
\renewcommand\bibname{}
\renewcommand*\chapter{\section{Third Bibliography}}
\bibliographyInternet{Lit}
\bibliographystyleInternet{alphadin}
\end{document}