General ⇒ Need help with cite/referencing
Need help with cite/referencing
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.
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
Need help with cite/referencing
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.
Need help with cite/referencing

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