BibTeX, biblatex and biber ⇒ Supplementary Literature List
-
stefan_fuglsang
- Posts: 12
- Joined: Mon Oct 04, 2010 9:41 am
Supplementary Literature List
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?
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
-
5gon12eder
- Posts: 126
- Joined: Sun Feb 13, 2011 8:36 pm
Supplementary Literature List
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 390 times
-
- supplementary.bib
- Bibliography for the supplementary material.
- (278 Bytes) Downloaded 285 times
-
- literature.bib
- Bibliography for the references.
- (311 Bytes) Downloaded 275 times
-
stefan_fuglsang
- Posts: 12
- Joined: Mon Oct 04, 2010 9:41 am
Re: Supplementary Literature List
It doesn't give separate numbering, but that is not important.