BibTeX, biblatex and biberToo many pages

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
SirBelial
Posts: 1
Joined: Wed Jul 11, 2012 12:26 pm

Too many pages

Post by SirBelial »

Hi,
for my bachelor thesis I want to use Bibtex to cite my sources.
The bibliography is embedded like this:

Code: Select all

%%%% Bibliographie
\addcontentsline{toc}{chapter}{Literaturverzeichnis}
\bibliographystyle{ieeetr}
\bibliography{bib/BibtexDatabase}
\newpage


%%% Danksagung
\include{content/Danksagung}


It works just fine but there is one problem.
In the pdf it's like this:
- page 1: bibliography (working as it's supposed to), headline: Literaturverzeichnis
- page 2: empty, headline: Literaturverzeichnis
- page 3: Danksagung (thank you notes), no headline
- page 4: empty, headline: Literaturverzeichnis

as you might imagine I don't want page 2 and 4 to be displayed.

Any suggestions?

Recommended reading 2024:

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

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

kaiserkarl13
Posts: 707
Joined: Tue Mar 25, 2008 5:02 pm

Re: Too many pages

Post by kaiserkarl13 »

I think you are probably using a book-like class with "openright" set; that means that all chapters begin on an odd-numbered (right-side) page. Put "openany" as an option to the document class and it might fix that.
Post Reply