BibTeX, biblatex and biberThe word References - does not appear

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
DbI
Posts: 3
Joined: Tue Nov 11, 2014 10:08 pm

The word References - does not appear

Post by DbI »

I wrote an article for an Elsevier journal. Elsevier uses \documentclass{elsarticle}. This {elsarticle} is in TeXLive, which I have on my computer. I wrote bibliography (I have five items in bibliography) in usual manner. Like:

Code: Select all

\begin{thebibliography}{9}
\bibitem{dT13}
D. Tobias, The Function.... 2013
\bibitem{  }
.....
.....
.....
\end{thebibliography}
\end{document}
All the bibliography appeared correctly in the PDF file. however, there should have been the word
References
above the list of references.
But, this word did not appear in the PDF file.

Does anybody know what to do, that the word References would appear?
Last edited by Stefan Kottwitz on Thu Jul 16, 2015 12:26 am, edited 2 times in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

Johannes_B
Site Moderator
Posts: 4182
Joined: Thu Nov 01, 2012 4:08 pm

Re: The word References - does not appear

Post by Johannes_B »

I cannot remember to have ever seen the word references in an Elsevier article. The class takes care, that no section heading is printed.
The smart way: Calm down and take a deep breath, read posts and provided links attentively, try to understand and ask if necessary.
DbI
Posts: 3
Joined: Tue Nov 11, 2014 10:08 pm

Re: The word References - does not appear

Post by DbI »

In a sample article (for that Elsevier journal), there is the word References,as a title to bibliography.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

The word References - does not appear

Post by Stefan Kottwitz »

Hi Dbl,

you can simply write

Code: Select all

\section*{References}

\begin{thebibliography}{9}
...
Stefan
LaTeX.org admin
DbI
Posts: 3
Joined: Tue Nov 11, 2014 10:08 pm

The word References - does not appear

Post by DbI »

Thank you. I did as you suggested, and it worked like a charm!

I have to say that different publishing houses have different styles of \documentclass{article}. I had experience of writing an article in LaTeX for a different publishing house, and in that case, I did not need to do anything about the word References above the list of references. All I had to do in that case was to write

Code: Select all

\begin{thebibliography}{  }

and then to write all these \bibitem{  } things, and then to write
'
\end{thebibliography}
\end{document}
and the word References was appearing automatically!

That was my only experience before, so, when the word References did not appear automatically in my present case, I did not know what to do. Fortunately, I could get the answer to my question from you. Thank you again!
Last edited by Stefan Kottwitz on Thu Jul 16, 2015 7:54 pm, edited 1 time in total.
User avatar
Stefan Kottwitz
Site Admin
Posts: 10335
Joined: Mon Mar 10, 2008 9:44 pm

Re: The word References - does not appear

Post by Stefan Kottwitz »

No problem! We are glad to help.

Let us know if you got any LaTeX question.

Stefan
LaTeX.org admin
Post Reply