BibTeX, biblatex and biberControl Page Reference with multiple Authors

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
piltdownpunk
Posts: 11
Joined: Tue Aug 09, 2011 8:05 pm

Control Page Reference with multiple Authors

Post by piltdownpunk »

Hello.

I need to control the placement of a page reference within a citation with multiple authors. For example:

~\citep[169]{midant2000prehistory,puleston2008population} yields

(Midant-Reynes 2000; Puleston 2008:169).

What if the page reference actually needs to go with the first citation...or, what if each citation has its own page reference? Thanks.

--Trey

Recommended reading 2024:

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

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Re: Control Page Reference with multiple Authors

Post by kaiserkarl13 »

I assume you're using natbib, though you don't say so. A minimal working example (see board rules) might help considerably.

In natbib, the optional argument to \cite, \citet, \citep, etc. means "text after citation"; it's not technically a page reference though it can be used for that. For example, using \citep[see][chapter~2]{puleston2008population} will yield a citation like
(see Puleston 2008, chapter 2)
depending somewhat on your bibliography style and the options passed to natbib.

You might try constructing your own, using \citealp and/or \citealt. These leave off the parentheses, so you can put punctuation and related things anywhere you want.
Post Reply