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?