Latex Bibliography Without Title

In summary, the conversation discusses how to omit the title "References" in a LaTeX bibliography. The solution is to either find a bibliography style file that does not include the title or to use the command \renewcommand{\bibname}{}. The conversation also mentions potential issues with this solution and suggests using \vspace{-11mm} before the bibliography to adjust the spacing.
  • #1
NeoDevin
334
2
[SOLVED] Latex Bibliography

Whenever I create a bibliography in latex using

Code:
\bibliographystyle{plain}

\begin{thebibliography}{1}

\bibitem{Reference 1}Details about Reference 1

\bibitem{Reference 2}Details about Reference 2

\end{thebibliography}

It puts the title `References' above it. Does anyone know how to make it omit the title?

Thanks
 
Physics news on Phys.org
  • #2
72 views and nobody knows how to do it? I figured it was probably somthing simple.
 
  • #3
Presumably the solution is to find a bibliography style file that does not write out "Reference".
The only other option is to start redefining various parameters, but that is usually extremely messy so it is not something I would recommend.

Latex is only simple as long as you follow the "templates" (sty-files etc), really customizing the appearance of your documents can be quite a daunting task.
 
  • #4
You can just put \renewcommand{\bibname}{} into your preamble, although because that's just renaming the title to be nothing, you get quite a bit of white space above your references which I'm not sure how you could get rid of, although it is a crude way to achieve what you want.
 
  • #5
Thanks, I'll play with that, and maybe some negative vertical space to fix it up.
 
  • #6
It didn't work, it told me

Error: ! LaTeX Error: \bibname undefined.
 
  • #7
Oh are you writing an article as opposed to a report/book?
Try \renewcommand{\refname}{}
 
  • #8
Perfect, thanks. Using

\renewcommand{\refname}{}

and then

\vspace{-11mm}

before the bibliography seems to be about perfect.

Thanks so much.
 

Similar threads

Replies
1
Views
767
Replies
1
Views
6K
Replies
3
Views
3K
Replies
7
Views
11K
Replies
11
Views
5K
Replies
5
Views
4K
Replies
8
Views
11K
Replies
11
Views
6K
Replies
5
Views
2K
Back
Top