66

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 ...

Anderson
  • 2,333
  • 4
  • 17
  • 19

5 Answers5

55

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}}{}{}{}
Gonzalo Medina
  • 505,128
39

If you don't mind using biblatex instead of bibtex, you could simply use the following: \printbibliography[heading=none].

Dependencies:

  • biblatex
  • biblatex-ieee (for the IEEE bibliography style)

Here's a minimal example:

\documentclass{article}
\usepackage[style=ieee]{biblatex}
\addbibresource{refs.bib}

\begin{document}

\section{Some section}
Some text \cite{KandR}.

\printbibliography[heading=none]

\end{document}

For the sake of completeness, here is the content of the refs.bib file used:

@BOOK
  {KandR,
   AUTHOR    = {Kernighan, Brian W. and Ritchie, Dennis M.},
   TITLE     = {The C Programming Language Second Edition},
   PUBLISHER = {Prentice-Hall, Inc.},
   YEAR      = 1988
  }

After compiling the document with latexmk -bibtex -pdf, the result should look like this:

Result

Apteryx
  • 521
18

If you are using the natbib package

\renewcommand{\bibsection}{}

will do the job.

17

I think something easier would be \renewcommand\refname{}

Supernormal
  • 842
  • 8
  • 12
  • 3
    The problem with this approach is that if \tableofcontents is used, then an odd entry with no title, but page number, is added to the ToC. – Gonzalo Medina Sep 10 '13 at 19:01
  • 5
    Moreover, space-wise, a section will still be set, perhaps leaving an unwanted (large) vertical gap between text and references. – Werner Sep 10 '13 at 19:06
9

If you are using biblatex:

\defbibheading{bibliography}[\refname]{}
s0rce
  • 1,180