Hi,
I need to format some references this way:
[Smith 2000, p. 5, Jones 2005, p. 10]
I manage to reference to two authors plus page numbers for one of the references like: [Smith 2000, Jones 2005, p.10]
How do I get page numbers for the scond reference as well?
I've tried
\cite [p. 10][p. 5]{Smith2000, Jones2005} and \cite [p.10, p. 5]{Smith2000, Jones2005}
without success.
The header of my texfile:
\documentclass{scrreprt}
\usepackage{cite}
\usepackage[ansinew]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{babelbib}
\usepackage{graphics}
\usepackage{picins}
\usepackage{setspace}
\onehalfspacing
Any help is appreciated!
Thanks!
C.
General ⇒ Need help with cite/referencing
NEW: TikZ book now 40% off at Amazon.com for a short time.

Need help with cite/referencing
Hi,
one possibility is to use the natbib package along with its \citetext command, as described in the natbib documentation (pp. 7ff.).
You cannot use simultaneously the natbib and cite packages, so you will have to take out the cite package. That should be no problem since natbib allows you to do the same things as the cite package.
one possibility is to use the natbib package along with its \citetext command, as described in the natbib documentation (pp. 7ff.).
You cannot use simultaneously the natbib and cite packages, so you will have to take out the cite package. That should be no problem since natbib allows you to do the same things as the cite package.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Need help with cite/referencing

Thank you VERY much!!
A combination of \citetext and \citealp does exactly what I needed!
Thanks, thanks, thanks!!!