GeneralGenerate bibliography without the text REFERENCES

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
yostane
Posts: 7
Joined: Tue Dec 15, 2009 2:37 pm

Generate bibliography without the text REFERENCES

Post by yostane »

Hi,
is it possible to generate the bibliography using \begin{thebibliography} without the text "References" inserted.
thanks :)

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Generate bibliography without the text REFERENCES

Post by gmedina »

Hi,

yes, it is possible; take a look at the following example:

Code: Select all

\documentclass{article}
\renewcommand\refname{}

\begin{document}

\begin{thebibliography}{9}
  \bibitem{one} Bibitem one.
  \bibitem{two} Bibitem two.
\end{thebibliography}

\end{document}
1,1,2,3,5,8,13,21,34,55,89,144,233,...
yostane
Posts: 7
Joined: Tue Dec 15, 2009 2:37 pm

Generate bibliography without the text REFERENCES

Post by yostane »

Hi,
Thanks for the answer. However, my objective is to insert the references as a subsection, so I want to have something like this

before

Code: Select all

5 References
[1]............
[2]...........
after

Code: Select all

4.6 References
[1]............
[2]...........
thanks
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Generate bibliography without the text REFERENCES

Post by gmedina »

yostane wrote: ...my objective is to insert the references as a subsection, so I want to have something like this...
Then why didn't you mention that from the begining? What document class are you using?
1,1,2,3,5,8,13,21,34,55,89,144,233,...
yostane
Posts: 7
Joined: Tue Dec 15, 2009 2:37 pm

Generate bibliography without the text REFERENCES

Post by yostane »

Code: Select all

\documentclass[graybox,envcountchap,sectre\tinyfs]{svmono}
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

Re: Generate bibliography without the text REFERENCES

Post by gmedina »

Not familiar with that document class. Ask the designers of the class.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
yostane
Posts: 7
Joined: Tue Dec 15, 2009 2:37 pm

Re: Generate bibliography without the text REFERENCES

Post by yostane »

Thnks for the help
Post Reply