Unnumbered thebibliography in LaTeX?
August 5, 2009 2:40 PM
Subscribe
In LaTeX, how do I get \thebibliography{} to not number items? I just want them listed plainly, with a hanging indent if they spill over a single line. I don't want to use BibTeX.
It's an old paper written by someone else that I'm typesetting in LaTeX, so I want to preserve some of the idiosyncrasies in the citation rather than have BibTeX do it "properly". That's why I'm using thebibliography instead.
posted by limon to computers & internet (5 comments total)
1 user marked this as a favorite
\bibitem[label]{cite_key}
in the \thebibliography{} environment. If you omit the [label] option, it numbers them. Therefore, try filling it with something else or leaving it empty:
\bibitem[]{cite_key}
\bibitem[{ }]{cite_key}
for example.
posted by fatllama at 3:12 PM on August 5