BibTeX, biblatex and biberMultibib - problem to create two bibliographies

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
neverQuit
Posts: 1
Joined: Sat Sep 06, 2014 5:15 pm

Multibib - problem to create two bibliographies

Post by neverQuit »

hi,

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}
thanks!
Last edited by neverQuit on Sat Sep 06, 2014 7:16 pm, edited 3 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Multibib - problem to create two bibliographies

Post by Johannes_B »

Seems like you need a break. This is an english-speaking forum. You are welcome to post here, but in english please.
If you looking for a place in german, have a look at TeXwelt.de.

But Before posting a question, attentively read wichtige Hinweise für die Erstellung von Literaturverzeichnissen (important notes on bibliographies with LaTeX, german) as well as Wie unterteile ich meine biblatex Bibliografie? (How to split my biblatex bibliography, german).

Be careful to use proper markup so the moderator team doesn't have to do your work.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
User avatar
Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: Multibib - problem to create two bibliographies

Post by Johannes_B »

I just saw you translated your original post to english, that's a very good idea. Unfortunaely, you didn't follow my hints.

Some complete code to test and play with is required for a bullet-proof solution.
Please consider using biblatex as lots of (all) things are simpler to implement using biblatex.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
Post Reply