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

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

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