BibTeX, biblatex and biber ⇒ Two literature lists
Two literature lists
I am writing a PhD with Latex and I need to have separate "Sources" and "Secondary Literature" libraries at the end of it.
I tried to include two bibtex files in to my work but it doesnt work...
Any idea on how to do that?
I also need to give them separate names like:
Quellenverzeichnis and: Literaturverzeichnis
I can do that with renewcommand right?
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Two literature lists
Code: Select all
\usepackage{multibib}
Code: Select all
\bibliographysec{Bibliographyname}
\bibliographystylesec{jurabib}
\renewcommand{\refname}{Literaturverzeichnis}
\bibliography{Bibliographyname}
\bibliographystyle{jurabib}
Two literature lists
Can you please post a minimal working example (MWE) showing the undesired behaviour?Yeats wrote:...
It shows me some undefined quotes in second library... dunno why...
Two literature lists
I solved my problem by compiling files with PC. I am using TextMate on Mac and it does this all the time. With PC i dont have any problems.gmedina wrote:Can you please post a minimal working example (MWE) showing the undesired behaviour?Yeats wrote:...
It shows me some undefined quotes in second library... dunno why...
-
- Posts: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Two literature lists
If you could provide an example it may help.
Two literature lists
I dont think its a bug. I am having problems with TextMate compiling system, but sure I can give example.kaiserkarl13 wrote:Your "solution" may actually be a bug---TeX and LaTeX were specifically designed to be platform-independent, so if it works in one place but not another there's something wrong.
If you could provide an example it may help.
Ok... this is how that part of file looks like:
Code: Select all
\cleardoublepage
\addcontentsline{toc}{section}{Quellenverzeichnis}
\bibliographysec{Biblio}
\bibliographystylesec{jurabib}
\pagebreak
\cleardoublepage
\addcontentsline{toc}{section}{Literaturverzeichnis}
\renewcommand{\refname}{Literaturverzeichnis}
\bibliography{Biblio}
\bibliographystyle{jurabib}
After I do that he shows me that I have one citation undefined.
I can keep pressing Cmd+R hundred times it wont change a thing. I also tried to run latex, bibtex, latex, latex... doesnt work.
Than I figured out how to make him identify that new citation:
In the line
Code: Select all
\bibliography{Biblio}
Code: Select all
\bibliography{biblio}
Than I change it back again to capitalized:
Code: Select all
\bibliography{Biblio}
I know it sounds amateur... but it works for me so...
Anyway TextMate is very good program and except from this I have no other problem with it... worth every penny...