GeneralMultiple Bibliographies Question

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
discostews
Posts: 2
Joined: Mon Aug 18, 2008 6:02 pm

Multiple Bibliographies Question

Post by discostews »

Hey,

I have a question regarding multiple bibliographies contained within one Latex document.

The document is relatively short, and as such does not contain a huge number of references, hence i have opted to specify each \bibitem separately and not use bibtex for this particular paper.

My problem is that i need to have two seperate bibliographies in the document, one for the main text, and one for a "sidebar" type section that i have just typed up at the end. I want to have the main text bibliography to have labels such as [1] [2]... etc, and i want the extra sections reference lists and cites to have the format [S1] [S2]... etc.

Does anyone know a method to define this type of citation styling?

thanks!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Multiple Bibliographies Question

Post by gmedina »

Hi,

you could proceed, with the help of the multibib packages, as the following example suggests:

Code: Select all

\documentclass{article}
\usepackage{multibib}

\newcites{side}{Side References}

\begin{document}
References to \citeside{sitem2} and \cite{item1}...

\begin{thebibliography}{9}
\bibitem{item1} bibitem 1 
\bibitem{item2} bibitem 2 
\end{thebibliography}

\renewcommand{\refname}{Side References}
\begin{thebibliography}{9}
\bibitem[S1]{sitem1} sbibitem 1 
\bibitem[S2]{sitem2} sbibitem 2 
\end{thebibliography}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
discostews
Posts: 2
Joined: Mon Aug 18, 2008 6:02 pm

Re: Multiple Bibliographies Question

Post by discostews »

Brilliant,

That worked out fine.

I had to leave out the \renewcommand line you had in the example, as I am not using the "article" document class. Worked fine without it however.

Thanks for your help.
Post Reply