LaTeX Latex Bibliography Without Title

AI Thread Summary
In LaTeX, to create a bibliography without the title "References," one effective method is to use the command \renewcommand{\refname}{} in the preamble, which renames the title to nothing. However, this may leave unwanted white space above the bibliography. To address this, users can add a negative vertical space adjustment, such as \vspace{-11mm}, to eliminate the excess space. This approach has been confirmed to work well for those writing articles rather than reports or books. Overall, while customizing LaTeX can be complex, these adjustments provide a straightforward solution for omitting the bibliography title.
NeoDevin
Messages
334
Reaction score
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
72 views and nobody knows how to do it? I figured it was probably somthing simple.
 
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.
 
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.
 
Thanks, I'll play with that, and maybe some negative vertical space to fix it up.
 
It didn't work, it told me

Error: ! LaTeX Error: \bibname undefined.
 
Oh are you writing an article as opposed to a report/book?
Try \renewcommand{\refname}{}
 
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
2K
Replies
1
Views
7K
Replies
3
Views
3K
Replies
5
Views
5K
Replies
8
Views
12K
Replies
5
Views
3K
Back
Top