Text Formatting\vspace{\textheight}?

Information and discussion about LaTeX's general text formatting features (e.g. bold, italic, enumerations, ...)
Post Reply
ptrcao
Posts: 88
Joined: Sun Dec 05, 2010 3:26 am

\vspace{\textheight}?

Post by ptrcao »

\vspace{\lineheight} apparently isn't valid so I tried:

Code: Select all

\vspace{\textheight}
But this created a massive line which occupied the entire remaineder of the page, within leftbar environment. I'm trying to understand it's behavior, can anyone shed light?

I basically want to achieve a line skip that is explicitly the height of one standard line of text in the document.

I know about \smallskip, \medskip and \bigskip but they're not explicitly defined in terms of the height of a standard line of text. Does anyone know if \bigskip happens to be exactly equivalent to the height of one standard line of text in the document?
Last edited by ptrcao on Tue Apr 12, 2011 2:43 am, edited 1 time in total.
OS info: Win XP | Debian 6.0 | Ubuntu 10.04
Latex editor of choice: TexWorks (for dual view feature)

Recommended reading 2024:

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

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

\vspace{\textheight}?

Post by localghost »

ptrcao wrote:[…] I basically want to achieve a line skip that is explicitly the height of one standard line of text in the document. […]
This is it.

Code: Select all

\vspace{\baselineskip}
ptrcao wrote:[…] I know about \smallskip, \medskip and \bigskip but they're not explicitly defined in terms of the height of a standard line of text. Does anyone know if \bigskip happens to be exactly equivalent to the height of one standard line of text in the document?[…]
The mentioned commands all represent skips with a rubber length. Tthey are stretchable and compressible if necessary. So the \bigskip command is probably not what you are looking for.


Thorsten
ptrcao
Posts: 88
Joined: Sun Dec 05, 2010 3:26 am

\vspace{\textheight}?

Post by ptrcao »

localghost wrote:
ptrcao wrote:[…] I basically want to achieve a line skip that is explicitly the height of one standard line of text in the document. […]
This is it.

Code: Select all

\vspace{\baselineskip}
ptrcao wrote:[…] I know about \smallskip, \medskip and \bigskip but they're not explicitly defined in terms of the height of a standard line of text. Does anyone know if \bigskip happens to be exactly equivalent to the height of one standard line of text in the document?[…]
The mentioned commands all represent skips with a rubber length. Tthey are stretchable and compressible if necessary. So the \bigskip command is probably not what you are looking for.


Thorsten
That's right; I needed a fixed height on it. My thanks Thorsten!
OS info: Win XP | Debian 6.0 | Ubuntu 10.04
Latex editor of choice: TexWorks (for dual view feature)
Post Reply