Skip to content

Multiple citations in single cite command

Travis Collins edited this page Nov 4, 2015 · 1 revision

Latex file:

\documentclass{IEEEtran}
\usepackage[noadjust]{cite}
\usepackage{filecontents}


\renewcommand{\citedash}{--}

\begin{document}

 \section{Test}
 \cite{test1,test2,test3,test4}.
 \bibliographystyle{IEEEtran}
 \bibliography{test}
\end{document}

References:

@MISC{test1,
title = {Reference test1}
}
@MISC{test2,
title = {Reference test2}
}
@MISC{test3,
title = {Reference test3}
}
@MISC{test4,
title = {Reference test4}
}

From: http://tex.stackexchange.com/questions/98595/multiple-references-in-latex

Clone this wiki locally