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.
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
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