[Tex/LaTex] How to remove the “References” title

bibliographiesbibtex

I would like to know how to remove the "References" title from command \bibliography{}.

If I write:

... text ... \cite{RefAnd2013} ...
\bibliographystyle{IEEEtran}
\bibliography{AnderBib}
... more text ...
\end{document}

Appears "References" title:

… text [1] …

References

[1] W. Anderson, Environment Modeling with UML, in … 2010. [Online]. Available:
http://dx.doi.org/xxx

… more text …

But, I need

… text [1] …

[1] W. Anderson, Environment Modeling with UML, in … 2010. [Online]. Available:
http://dx.doi.org/xxx

… more text …

Best Answer

Add these lines to the preamble:

\usepackage{etoolbox}
\patchcmd{\thebibliography}{\section*{\refname}}{}{}{}

A complete example:

\begin{filecontents*}{aaaaabbbbbb.bib}
@misc{test,
title= "The title",
howpublished= "Publisher"
}
\end{filecontents*}
\documentclass{IEEEtran}
\usepackage{etoolbox}
\patchcmd{\thebibliography}{\section*{\refname}}{}{}{}

\begin{document}
\cite{test}
\bibliographystyle{IEEEtran}
\bibliography{aaaaabbbbbb}

\end{document}

enter image description here

Since IEEEtran.cls automatically adds an entry for the references in the ToC, you might also be interested in suppressing this entry (after all, there's no section for the references); in this case, you will also have to add

\patchcmd{\thebibliography}{\addcontentsline{toc}{section}{\refname}}{}{}{}