I'm using the natbib package with BibTeX, but this is not a requirement, if other packages works better.
I would like to include a second literature list with a separate numbering, and preferable another heading ("Supplementary Literature" rather than "References"), if possible.
Any suggestions?
BibTeX, biblatex and biber ⇒ Supplementary Literature List
-
- Posts: 12
- Joined: Mon Oct 04, 2010 9:41 am
Supplementary Literature List
Last edited by stefan_fuglsang on Tue Dec 13, 2011 11:00 am, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

-
- Posts: 126
- Joined: Sun Feb 13, 2011 8:36 pm
Supplementary Literature List
The bibtopic package might help you out.
Check out the following example.
After running
pdflatex demo
bibtex demo1
bibtex demo2
pdflatex demo
you'll get the PDF attached. The package will tell you on what files you have to run BibTeX.
Some random .bib files are attached to conveniently reproduce the results.
Best
Check out the following example.
Code: Select all
\documentclass{article}
\usepackage{natbib}
\usepackage{bibtopic}% your firend!
\begin{document}
Here is some text with some citations~\citep{Saleh2007,vanLeusen2001}.
\begin{btSect}[abbrvnat]{literature}
\section*{References}
\btPrintCited
\end{btSect}
\begin{btSect}[plainnat]{supplementary}
\section*{Further Reading}
\btPrintAll% see manual for alternatives...
\end{btSect}
\end{document}
pdflatex demo
bibtex demo1
bibtex demo2
pdflatex demo
you'll get the PDF attached. The package will tell you on what files you have to run BibTeX.
Some random .bib files are attached to conveniently reproduce the results.
Best
- Attachments
-
- demo.pdf
- The final output.
- (43.39 KiB) Downloaded 365 times
-
- supplementary.bib
- Bibliography for the supplementary material.
- (278 Bytes) Downloaded 269 times
-
- literature.bib
- Bibliography for the references.
- (311 Bytes) Downloaded 261 times
I'm using pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian).
-
- Posts: 12
- Joined: Mon Oct 04, 2010 9:41 am
Re: Supplementary Literature List
Thanks, that works really well (except it took me a while to realise, that I had to Bibtex <Myprojectname>1 and Bibtex <Myprojectname>2).
It doesn't give separate numbering, but that is not important.
It doesn't give separate numbering, but that is not important.