Text Formatting ⇒ Why there is this space in my text?
Why there is this space in my text?
In other chapters there is no such a problem.
- Attachments
-
- greek.PNG (87.52 KiB) Viewed 2766 times
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
Why there is this space in my text?
Is there a way to keep the bindingoffset with a normal spacing?
Why there is this space in my text?
\begin{figure}[H]
for your figures. You're saying the figure should be inserted right where the code is. And because figures cannot (and should not) be split on two pages, TeX is stretching the vertical glue to fill the page. The usual solution is to specify [htp]
as placement (which is the default, I believe, and is the way most books are done) instead of [H]
.- Stefan Kottwitz
- Site Admin
- Posts: 10360
- Joined: Mon Mar 10, 2008 9:44 pm
Why there is this space in my text?
And @Solid, that can happen anyway because of page height balancing, you could disable it by
\raggedbottom
in the preamble.Stefan