General ⇒ Bibtex question: citing a range of sources
Bibtex question: citing a range of sources
I'm guessing Bibtex may not be useful for this, but I figured it couldn't hurt to ask.
I'm writing a scientific review paper that has something like 130 sources. I'd like to write it in LaTeX (using MixTeX 2.5 and winedt). I know that only the sources cited directly will show up in the final document. But I was wondering if there's any shortcuts. For example, I'd like something to show up in the following way:
"In the mid-1980's, researchers stalled on the question of anisotropy [50]-[65]."
Clearly I wouldn't like to list every single item, [50], [51], [52], ..., [65] but instead I'd like to cite a range of articles and have them all show up in the final document. Is there any way to do this using Bibtex?
Thanks for any help you can give.
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
Bibtex question: citing a range of sources
Code: Select all
\bibitem{bib1} reference 1
\bibitem{bib2} reference 2
\bibitem{bib3} reference 3
\bibitem{bib4} reference 4
Code: Select all
"In the mid-1980's, researchers stalled on the question of anisotropy \cite{bib1}-\cite{bib4}."
Re: Bibtex question: citing a range of sources
Thanks!
Re: Bibtex question: citing a range of sources
'see [A], [5],[8],[11-14]'
See also breakcites.
You should consult the TeX Catalogue on Line, (topical) and look at 'bibliography' item.
Regards,
B.A.
Re: Bibtex question: citing a range of sources
Re: Bibtex question: citing a range of sources
\usepackage[sort&compress]{natbib}
then \cite{Ref1,Ref4,Ref5,Ref6] to get output in the form:
[1,4-6].
Bibtex question: citing a range of sources
Regards,
- Brian