I want to change the font size of the content to
14pt
. I've tried with the extreport
class from the extsizes bundle.
Code: Select all
\documentclass[14pt,a4paper]{extreport}
Regards
- s.fox
14pt
. I've tried with the extreport
class from the extsizes bundle.
Code: Select all
\documentclass[14pt,a4paper]{extreport}
NEW: TikZ book now 40% off at Amazon.com for a short time.
\normalsize
. But this has also effect on math formulas, for example, since the size is treated the same. It's also valid for text in tables. You could change that again... here's an example:Code: Select all
\documentclass{report}
\let\stdsize\normalsize% saves the default standard size
\makeatletter
% now we change the base text font size
\renewcommand*{\normalsize}{\@setfontsize{\normalsize}{14}{16}}
\makeatother
\everydisplay{\stdsize}% uses the default standard size for displayed formulas
\begin{document}
Text
\begin{equation}
ax^2 + bx + c = 0
\end{equation}
\end{document}
NEW: TikZ book now 40% off at Amazon.com for a short time.