Text FormattingGrinding my teeth: Vertical space between paragraphs

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
Montag
Posts: 340
Joined: Wed Jul 15, 2009 9:25 am

Grinding my teeth: Vertical space between paragraphs

Post by Montag »

Hello!
I am really grinding my teeth here because I can not figure out what is exactly what causes my "problem".

There are the following pieces to be found in two very different parts of my document:

example 1

Code: Select all

[...]übergeordneten System (z.B. Leitrechner).

Die zuvor [...]
leads to
Example #1.
Example #1.
zwischenablage1e.jpg (33.13 KiB) Viewed 1861 times
example 2

Code: Select all

[...]
vereinfachte Beschreibung der Kinematik.

Somit kann auf eine Symbolik [...]
leads to
Example #2.
Example #2.
zwischenablage2.jpg (27.72 KiB) Viewed 1861 times
So my question is:
What could cause the extra vertical space? :)
Is it automatically generated due to LaTeX's computations? I've never ran into this issue before, I always had it like it looks in the first picture I posted. I guess then it must be LaTeX's own doing or a command in between I must have missed. But then again, later on in the document, some paragrphings look just like the first example.

How can I avoid the differenty vertical spacings?
I have to admit, it's not my real own file, I had to convert from Word to LaTeX, whcih is fine, but it includes a lot of graphics and tables so it is not the ideal document for LaTeX. Furthermore, they have to be hard-coded and can't be included via float-environments.
OS: Win 7 64-bit LaTeX: MikTeX 2.9 64-bit Editor: TXC 1 RC1

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

frabjous
Posts: 2064
Joined: Fri Mar 06, 2009 12:20 am

Re: Grinding my teeth: Vertical space between paragraphs

Post by frabjous »

Probably the rubber space between paragraphs. It should report a bad vbox when the stretch gets that large, which is its way of telling you that it needs to resort to something ugly to get all pages of roughly the same height.

You can unrubberize the space with something like:

\setlength{\parskip}{0pt}

or tell it that pages don't have to be the same height:

\raggedbottom

If these aren't acceptable, it might require more fancy tricks.
Post Reply