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

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
Stefan Kottwitz
Site Admin
Posts: 10360
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