LyXHow many points is single line spacing?

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
Cosm
Posts: 13
Joined: Thu Nov 07, 2013 12:53 pm

How many points is single line spacing?

Post by Cosm »

On this page:
http://wiki.lyx.org/FAQ/Spacing
It says 'Single spacing is usually ca. 1.2 * line height (the precise value depends on the font size).'

I wonder is there a way to find out for a specific font what the precise value of single spacing is (i.e. the precise value of line height + leading).

By the way here is a nice picture that explains the concepts of 'leading' and 'line spacing':
http://www.flickr.com/photos/nicksherman/5640736164/

Recommended reading 2024:

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

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

And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p

tom
Posts: 73
Joined: Thu Apr 18, 2013 4:02 am

How many points is single line spacing?

Post by tom »

Use \the to print the value:

Code: Select all

\documentclass[11pt]{article}
\begin{document}
\the\baselineskip
\end{document}
Post Reply