Generalvspace

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
daviddoria
Posts: 60
Joined: Tue Sep 30, 2008 9:24 pm

vspace

Post by daviddoria »

I want to insert some space between these two lines, so I tried this:

Code: Select all

$\phi(1.4)$ (cumulative probability) $=.5 + .4192$\\
\vspace{10mm}
$\phi(-.5) = .5 - .1915 = .3085$\\
Then I read that sometimes the space is removed if it is near the end of the page, so I saw to add the *, like this:

Code: Select all

$\phi(1.4)$ (cumulative probability) $=.5 + .4192$\\
\vspace*{10mm}
$\phi(-.5) = .5 - .1915 = .3085$\\
But there is still no space?? Any other pointers?

Thanks,
Dave

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: 10347
Joined: Mon Mar 10, 2008 9:44 pm

vspace

Post by Stefan Kottwitz »

Hi Dave,

instead of breaking the line by \\ insert a paragraph break by an empty line:

Code: Select all

$\phi(1.4)$ (cumulative probability) $=.5 + .4192$

\vspace{10mm}
$\phi(-.5) = .5 - .1915 = .3085$
Stefan
LaTeX.org admin
Post Reply