So I use bibtex and I have set my \bibliographystyle to be unsrt. I want Latex to render something like this:
ref [1]-[5] support this claim.
but if i write:
\cite{x1} - \cite{x5} blah blah
citation items 2, 3 and 4 are not gonna be listed in the bibliography list in the end, whereas I want them to be present. How can I do it?
citepackage and sayref~\cite{x1,x2,x3,x4,x5}to getref [1-5]. FYI, you can include citations in bibliography list by using\nocite{x2,x3,x4}– Aug 07 '13 at 15:41