1.6.12

How can I change the font size in math equations?


To get equal sizes, you could use \DeclareMathSizes in your preamble. The syntax is
\DeclareMathSizes{display size}{text size}{script size}{scriptscript size}.
You could simply set all to your default font size. In this example:
\documentclass[10pt]{article}
\begin{document}
\[
  x = \frac{1}{x + \frac{1}{x + \frac{1}{x}}}
\]
\end{document}
where you firstly get different sizes:
alt text
inserting this line
\DeclareMathSizes{10}{10}{10}{10}
changes the output to:
alt text

No hay comentarios:

Publicar un comentario