Text Formatting ⇒ All Section Headings 12pt Font Size
All Section Headings 12pt Font Size
\documentclass[12pt]{article}
A good start, but I am having issue with the section/subsection/subsubsection font sizes. I tried to remedy the situation with:
\usepackage{sectsty}
\allsectionsfont{\small or \normalsize or \large}
However, according to my eyes and http://en.wikibooks.org/wiki/LaTeX/Formatting (about a third of the way down where it gives absolute point sizes for the \normalsize commands, etc.) these commands won't cut it.
Does anybody know how to force all section/subsection/subsubsection headings to be 12pt exactly?
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
All Section Headings 12pt Font Size
Code: Select all
\documentclass[12pt]{article}
\usepackage{blindtext}% generates dummy text
\usepackage[english]{babel}% needed for blindtext
\usepackage{sectsty}
\allsectionsfont{\normalsize\bfseries}
\begin{document}
\Blinddocument
\end{document}