Generalquestion about thebibliography

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
waxranger
Posts: 27
Joined: Tue Jan 22, 2008 11:58 pm

question about thebibliography

Post by waxranger »

Hello readers

I would like to ask a question regarding the thebibliography environment. When I typeset my document, LaTeX puts the bibliography item (created with \bibitem) on a new page, leaving the previous page with the "References" title empty (that is, no items are typeset on this initial page). I'm using the book.cls format, is this a standard behavior in book.cls, if so how can I tell LaTeX to typeset items on this first bibliograpy page too? If not, am I doing something wrong then?

that's what I'm using:

%Bibliography
\backmatter
\begin{thebibliography}{99}
\include{bibliography/bib_supersonic}
\end{thebibliography}

Regards
Fab

Recommended reading 2024:

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

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

User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

question about thebibliography

Post by gmedina »

Hi,

use \input instead of \include.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
waxranger
Posts: 27
Joined: Tue Jan 22, 2008 11:58 pm

question about thebibliography

Post by waxranger »

gmedina wrote:Hi,

use \input instead of \include.
thanks a million!

it's always those little things!

have a nice weekend
Fab
Noobix Cube
Posts: 24
Joined: Tue Dec 02, 2008 11:45 pm

Re: question about thebibliography

Post by Noobix Cube »

In the same vein, my bibliography is not showing up in the final PDF output of my work. I have used the following code

\backmatter

%%%%%%% Bibliography %%%%%%%

\bibliographystyle{plain}
\bibliography{mybiblio}


Where 'mybiblio.bib' is in the same directory as the main tex file. Any ideas?
phi
Posts: 577
Joined: Tue Oct 21, 2008 8:10 pm

question about thebibliography

Post by phi »

Did you recompile the bibliography file with BibTeX? Every time you add or remove a citation or bibliography entry, you have to update the bibliography using

Code: Select all

(pdf)latex
bibtex
(pdf)latex
(or something similar, depending on your operating system and distribution).
Post Reply