Latex Bibliography Without Title

  • Context: LaTeX 
  • Thread starter Thread starter NeoDevin
  • Start date Start date
  • Tags Tags
    Bibliography Latex
Click For Summary

Discussion Overview

The discussion centers on how to create a bibliography in LaTeX without displaying the title "References." Participants explore various methods to achieve this, including adjustments to bibliography style files and commands within the LaTeX document.

Discussion Character

  • Technical explanation
  • Debate/contested

Main Points Raised

  • One participant notes that finding a bibliography style file that omits the title may be a solution, but warns that customizing LaTeX can be complex.
  • Another participant suggests using the command \renewcommand{\bibname}{} to remove the title, but acknowledges that this may leave unwanted white space above the bibliography.
  • A later reply indicates that this command resulted in an error message regarding an undefined \bibname, prompting a clarification about the document type.
  • Another participant proposes using \renewcommand{\refname}{} as an alternative for articles, which seems to resolve the issue for the original poster.
  • Finally, the original poster mentions using \vspace{-11mm} to adjust the spacing, indicating a successful workaround.

Areas of Agreement / Disagreement

Participants express differing views on the best method to remove the bibliography title, with some solutions leading to complications or errors. The discussion includes multiple approaches without a clear consensus on a single best practice.

Contextual Notes

Participants mention issues such as the presence of white space after removing the title and errors related to command definitions, indicating potential limitations in the proposed solutions.

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 ·
Replies
1
Views
2K
  • · Replies 1 ·
Replies
1
Views
8K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 7 ·
Replies
7
Views
15K
  • · Replies 11 ·
Replies
11
Views
6K
  • · Replies 5 ·
Replies
5
Views
7K
  • · Replies 8 ·
Replies
8
Views
13K
  • · Replies 11 ·
Replies
11
Views
9K
  • · Replies 5 ·
Replies
5
Views
1K
  • · Replies 5 ·
Replies
5
Views
4K