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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
\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}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis