Instead of
[1] reference 1 [2] reference 2
How can I have
[1] reference 1; reference 2
?
Instead of
[1] reference 1 [2] reference 2
How can I have
[1] reference 1; reference 2
?
Found it!
If the references have key1, key2. Citing with a star combines them.
instead of \cite{key1, key2}, using \cite{key1, *key2} gives the desired result.
Cheers.
Note: This was achieved when using revtex 4.1, which implements a syntax similar to mcite. The same can be achieved in standard classes by loading mcite, e.g.
\documentclass{article}
\usepackage{mcite}
\begin{document}
\cite{article-full,*book-full}
\bibliographystyle{plain}
\bibliography{xampl}
\end{document}
\documentclass{...}and ending with\end{document}. – adn Apr 17 '15 at 17:49