BibTeX, biblatex and biber ⇒ Two literature lists
Two literature lists
Hi,
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?
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?
NEW: TikZ book now 40% off at Amazon.com for a short time.

Two literature lists
I found solution in the meantime but its not working so good:
It shows me some undefined quotes in second library... dunno why...
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...
1,1,2,3,5,8,13,21,34,55,89,144,233,...
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
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.
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...