GeneralParagraph Spacing

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
ipmax
Posts: 5
Joined: Tue Feb 01, 2011 4:33 pm

Paragraph Spacing

Post by ipmax »

Hey guys,

When I try to use this code

Code: Select all

We want to get\\
True Positive (TP)\\ \\
True Negative (TN)\\ \\
This gives me following warning,

Underfull \hbox (badness 10000) in paragraph at lines 76--88

I want to use double spacing between the lines but I cannot do it using \\ twice. Could anyone of you help me please.

Thanks in advance.

Max

Recommended reading 2024:

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

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

Stefan Kottwitz
Site Admin
Posts: 10344
Joined: Mon Mar 10, 2008 9:44 pm

Paragraph Spacing

Post by Stefan Kottwitz »

Hi Max,

you could use \\[\baselineskip:

Code: Select all

We want to get\\[\baselineskip]
True Positive (TP)\\[\baselineskip]
True Negative (TN)\\[\baselineskip]
\\ supports an optional argument which means additional vertical space, and \baselineskip is the height of a text line.

Stefan
LaTeX.org admin
ipmax
Posts: 5
Joined: Tue Feb 01, 2011 4:33 pm

Re: Paragraph Spacing

Post by ipmax »

thanks a lot..it works
Post Reply