Page LayoutOverfull vertical Box at Bibliography

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
berni_b
Posts: 1
Joined: Wed Mar 07, 2012 11:40 pm

Overfull vertical Box at Bibliography

Post by berni_b »

Hey guys,

I've a weird error and no remedy can be found in the world wide web...

Miktex2.9 with TexMaker on Windows. UTF8 Encoding.

The error:
Overfull \vbox (923.69717pt too high) has occurred while \output is active []
So my entire pdf-file is fine, except that all references in the bibliography are clashed onto one page instead of multiple pages. The references just run over the footer to the lower edge. The page prevous to the bibliography is empty.

Please see my main file and settings file in the attachment.

Thanks in advance!
Attachments
BBMdefinitions.tex
(9.14 KiB) Downloaded 268 times
BBMmaster.tex
(1.32 KiB) Downloaded 253 times

Recommended reading 2024:

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

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

User avatar
justdeath
Posts: 69
Joined: Mon Sep 05, 2011 10:27 am

Overfull vertical Box at Bibliography

Post by justdeath »

That was... no words actually.

So much useless packages, no wonder something is wrong.

Start from scratch, create an empty file with just the document class and required packages for natbib. Then try to compile your bibliography.

You can start with this:

Code: Select all

\documentclass{scrbook}
\usepackage[utf8]{inputenc}
\usepackage[ngerman,british]{babel}
\usepackage{natbib}

\begin{document}

Text here.

\bibliography{./bib/BBMbib}

\end{document}
The possible problems may be: newcolumntype at line 184 or sloppy at 172 in BBMdefinitions.tex.

Nikolay
Post Reply