General ⇒ question about Latex references
-
- Posts: 7
- Joined: Sun Jul 04, 2010 7:07 pm
question about Latex references
Folks,
I'd like my references to be completely listed when I cite them. For example,
Instead of "it has been shown in [55-58]"
I would like "it has been shown in [55],[56],[57,[58]"
How do I do that? I am using \bibliographystyle{plain}
Thanks.
I'd like my references to be completely listed when I cite them. For example,
Instead of "it has been shown in [55-58]"
I would like "it has been shown in [55],[56],[57,[58]"
How do I do that? I am using \bibliographystyle{plain}
Thanks.
Last edited by cool_divya_4u on Thu Jul 08, 2010 11:00 pm, edited 1 time in total.
NEW: TikZ book now 40% off at Amazon.com for a short time.

Re: question about Latex references
I'm fairly sure you must be using some other reference-related packages, like, perhaps, natbib, etc. I don't think it's possible to help without that information.
-
- Posts: 7
- Joined: Sun Jul 04, 2010 7:07 pm
Re: question about Latex references
Here are packages I am using:
\documentclass[11pt]{article}
\usepackage{epsfig,cite,times,fullpage,wrapfig,titlesec,longtable,url,selectp}
\usepackage[paper=letterpaper]{geometry}
By the way, a small correction to how I need the references to look:
I would like like this: "it has been shown in [55,56,57,58]".
Thanks again.
\documentclass[11pt]{article}
\usepackage{epsfig,cite,times,fullpage,wrapfig,titlesec,longtable,url,selectp}
\usepackage[paper=letterpaper]{geometry}
By the way, a small correction to how I need the references to look:
I would like like this: "it has been shown in [55,56,57,58]".
Thanks again.
-
- Site Moderator
- Posts: 814
- Joined: Tue Jul 01, 2008 2:19 pm
Re: question about Latex references
If you want each one as a separate citation (very unusual), then use one \cite per reference.
Joseph Wright
-
- Posts: 7
- Joined: Sun Jul 04, 2010 7:07 pm
Re: question about Latex references
If I use one \cite per reference then it shows up as "[55],[56],[57]". I would like it to look as "[55,56,57]".
Any other advice? Thanks.
Any other advice? Thanks.
question about Latex references
I'm pretty sure it's the cite package that is compressing your references.
Try changing:
to:
(You might also want to use mathptmx or txfonts or txfontsb or tgtermes rather than times... I think the times package is considered obsolete.)
Try changing:
Code: Select all
\usepackage{epsfig,cite,times,fullpage,wrapfig,titlesec,longtable,url,selectp}
Code: Select all
\usepackage[nocompress]{cite}
\usepackage{epsfig,times,fullpage,wrapfig,titlesec,longtable,url,selectp}
-
- Posts: 7
- Joined: Sun Jul 04, 2010 7:07 pm
Re: question about Latex references
Thanks a lot. The nocompress option for \cite did the trick.