BibTeX, biblatex and biberSupplementary Literature List

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
stefan_fuglsang
Posts: 12
Joined: Mon Oct 04, 2010 9:41 am

Supplementary Literature List

Post by stefan_fuglsang »

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?
Last edited by stefan_fuglsang on Tue Dec 13, 2011 11:00 am, edited 1 time 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

5gon12eder
Posts: 126
Joined: Sun Feb 13, 2011 8:36 pm

Supplementary Literature List

Post by 5gon12eder »

The bibtopic package might help you out.

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}
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
Attachments
demo.pdf
The final output.
(43.39 KiB) Downloaded 357 times
supplementary.bib
Bibliography for the supplementary material.
(278 Bytes) Downloaded 265 times
literature.bib
Bibliography for the references.
(311 Bytes) Downloaded 257 times
I'm using pdfTeX, Version 3.1415926-1.40.10 (TeX Live 2009/Debian).
stefan_fuglsang
Posts: 12
Joined: Mon Oct 04, 2010 9:41 am

Re: Supplementary Literature List

Post by stefan_fuglsang »

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.
Post Reply