BibTeX, biblatex and biberProblem with Output of Bibliography

Information and discussion about BiBTeX - the bibliography tool for LaTeX documents.
Post Reply
Hermes_13
Posts: 1
Joined: Sat Jul 30, 2011 12:05 pm

Problem with Output of Bibliography

Post by Hermes_13 »

Dear all,
I am new in this Forum and I hope you could help me! =)

I am writing a report and I have a problem with the bibliography. I use TexnicCenter and when the PDF file is generated where the bibliography should start, it leaves one blank page, it starts in the following page and goes out of the page margin (bottom one) thus I cannot see all the references.

I have tried also to change compiler but nothing has changed.

I have copy/paste hereafter the source code of the main file.

Thanks a lot! =)

Andrea

Code: Select all

\documentclass[a4paper,12pt,twoside,titlepage]{report}
\usepackage[bindingoffset=2cm,centering,includeheadfoot,margin=2.8cm]{geometry}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage{graphicx}
\usepackage{indentfirst}
\usepackage{amsmath,amssymb}
\usepackage{color}
\usepackage{textcomp}
\usepackage{booktabs}
\usepackage{subfigure}
\usepackage[nonamebreak,numbers]{natbib}
\usepackage{fancyhdr}
\usepackage{enumerate}
\usepackage{wrapfig}
\usepackage{footnote}
\usepackage{nomencl}
\usepackage[pdftex,bookmarks,breaklinks,plainpages=false,backref,pagebackref,pdftoolbar]{hyperref}
\pagestyle{fancy}
\fancyhead{}

\fancyhead[C]{bla bla}
\fancyfoot[C]{bla bla}
\fancyfoot[LE,RO]{\thepage}
\renewcommand{\footrulewidth}{0.4pt}
\newcommand{\HRule}{\rule{\linewidth}{0.5mm}}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\setlength{\headheight}{14.5pt}

\renewcommand{\topfraction}{0.9}
\renewcommand{\bottomfraction}{0.8}

\setcounter{topnumber}{2}
\setcounter{bottomnumber}{2}
\setcounter{totalnumber}{4}
\setcounter{dbltopnumber}{2}
\renewcommand{\dbltopfraction}{0.9}
\renewcommand{\textfraction}{0.07}
\renewcommand{\floatpagefraction}{0.7}
\renewcommand{\dblfloatpagefraction}{0.7}

\pdfoptionpdfminorversion=6

\begin{document}

\begin{titlepage}
...
\end{titlepage}

\clearpage
\phantomsection
\addcontentsline{toc}{part}{Contents}
\tableofcontents
\clearpage
\input{Nomenclature}
\clearpage
\input{Intro}
\clearpage
\input{part1}
\clearpage
\input{part2}
\clearpage
\input{part3}
\clearpage
\input{conclusions}
\clearpage
\appendix
\input{appendix}

\clearpage
\phantomsection
\addcontentsline{toc}{part}{List of Figures}
\listoffigures

\clearpage
\phantomsection
\addcontentsline{toc}{part}{Bibliography}
\bibliographystyle{plainnat}
\bibliography{biblio}

\end{document}

Recommended reading 2024:

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

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

Post Reply