LyX ⇒ How many points is single line spacing?
How many points is single line spacing?
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/
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
How many points is single line spacing?
\the
to print the value:Code: Select all
\documentclass[11pt]{article}
\begin{document}
\the\baselineskip
\end{document}