I have the following org document:
#+LATEX_HEADER: \usepackage[scaled=1.5]{helvet} \renewcommand\familydefault{\sfdefault}
Testing equation
#+BEGIN_EXPORT latex
\begin{equation*}
1 + 1 = 2
\end{equation*}
#+END_EXPORT
The first line can be used to change the fontsize with scaled option. Unfotunately, it does not seem to change the math font size from the Latex export block. You can see in the image below:
As you can see, the body text is large (because I set scaled=1.5). But the displayed equation's font size is still the same, no matter what scaled I set. How do I change this font size? In addition, how to make this global, in case I have many export block like this?
Many thanks