I am writing a report and absolutely everything in the paper must be 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?
Text Formatting ⇒ All Section Headings 12pt Font Size
NEW: TikZ book now 40% off at Amazon.com for a short time.

All Section Headings 12pt Font Size
I'm not sure what the problem is. This code should work:
I wouldn't worry too much about \normalsize being 11.74988pt and not 12pt exactly, if that's bothering you.
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}