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

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
Code: Select all
\documentclass{article}
\renewcommand\refname{}
\begin{document}
\begin{thebibliography}{9}
\bibitem{one} Bibitem one.
\bibitem{two} Bibitem two.
\end{thebibliography}
\end{document}
Code: Select all
5 References
[1]............
[2]...........
Code: Select all
4.6 References
[1]............
[2]...........
Then why didn't you mention that from the begining? What document class are you using?yostane wrote: ...my objective is to insert the references as a subsection, so I want to have something like this...
Code: Select all
\documentclass[graybox,envcountchap,sectre\tinyfs]{svmono}
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