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 263 times
BBMmaster.tex
(1.32 KiB) Downloaded 249 times

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

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