BibTeX, biblatex and biber ⇒ Control Page Reference with multiple Authors
-
- Posts: 11
- Joined: Tue Aug 09, 2011 8:05 pm
Control Page Reference with multiple Authors
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
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: 707
- Joined: Tue Mar 25, 2008 5:02 pm
Re: Control Page Reference with multiple Authors
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.