BibTeX, biblatex and biberMultiple Cites with reference pages

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
John_sc
Posts: 2
Joined: Tue Jan 18, 2011 2:39 pm

Multiple Cites with reference pages

Post by John_sc »

It is possible to combine multiple cites such as \cite{Kalden04, Wierman07}. It is possible to include a page number in a citation, such as \cite [page 33]{Kalden04}.

But is there a way to list multiple citations which each include reference page numbers. For example, \cite[page 33]{Kalden04} \cite[page 34]{Wierman07}

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Multiple Cites with reference pages

Post by frabjous »

I'm not aware of a way to do with standard BibTeX, but with BibLaTeX, you can use the various "multicite" commands like \cites:

Code: Select all

\documentclass{article}
\usepackage[style=numeric]{biblatex}
\bibliography{mybibfile}
\begin{document}
\cites[page 3]{sample1}[page 4]{sample2}
\printbibliography
\end{document}
John_sc
Posts: 2
Joined: Tue Jan 18, 2011 2:39 pm

Re: Multiple Cites with reference pages

Post by John_sc »

I installed biblatex, and etoolbox, but it am getting the following error:

("C:\Program Files\MiKTex 2.8\tex\latex\misc\etex.sty"))
! LaTex Error: File 'logreq.sty' not found.

Any ideas on how to resolve this?
Sleft
Posts: 16
Joined: Fri Nov 12, 2010 4:19 pm

Multiple Cites with reference pages

Post by Sleft »

You need the package logreq.
Post Reply