BibTeX, biblatex and biberPostfix to a citation

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
dax42
Posts: 11
Joined: Wed Jun 16, 2010 1:07 pm

Postfix to a citation

Post by dax42 »

Hi there,

I am currently using the harvard citation styles, which has a

Code: Select all

\citeaffixed{citation}{prefix}
command, so that additional text can be in the brackets of the citation. However, this only works for having text in front of the citation, not after it! How can I do the following:
bla bla bla (Wong et al. 2003, see also below)?

A quick google search told me to use natbib, but it seems I cannot usepackage for both, I got some error message. Please don't tell me I have to change all my \cite commands to suit natbib, there are about 1000 of them and my thesis is due Tuesday! :o

Thanks, Winnie

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
AlexanderAue
Posts: 1
Joined: Wed May 08, 2024 9:56 pm

Postfix to a citation

Post by AlexanderAue »

Hey, you don't need natbib

all you need is the command:

Code: Select all

\cite[prefix][postfix]{citation}
Like this:

Code: Select all

\cite[][see also below]{Wong2003}
Post Reply