BibTeX, biblatex and biber ⇒ Supplementary Literature List
-
- 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?
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
-
- 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 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
-
- 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.