Fonts & Character SetsHow to set single space and font size 12?

Information and discussion about fonts and character sets (e.g. how to use language specific characters)
Post Reply
yaozhao
Posts: 57
Joined: Sat Oct 27, 2018 10:38 pm

How to set single space and font size 12?

Post by yaozhao »

Code: Select all

\begin{document}
\fontsize{12}{12}%
\selectfont
\linespread{1}\selectfont
Am I correct?

Many thanks in advance!

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Ijon Tichy
Posts: 640
Joined: Mon Dec 24, 2018 10:12 am

How to set single space and font size 12?

Post by Ijon Tichy »

Usually single spacing is defined as font size + normal leading. So it would be simply

Code: Select all

\documentclass[12pt]{article}
\usepackage{blindtext}
\begin{document}
This is single spaced text: \blindtext
\end{document}
By default, package setspace interprets it the same.

But no rule without exception. So, we do not really know, how someone else would interpret “single spacing”.

However, if you want so setup a smaller leading, package leading could also be useful. However, you should note, that removing the leading completely could result in unequal line spacing of paragraphs because of superscripts of footnotes or height and depth of inline math.
Sorry, but I can no longer participate here as the administrator is trampling on my wishes on one of his other platforms. :cry:
Post Reply