I'm using \mathlarger from relsize package to get larger fonts in my beamer presentation (in some VERY special cases, not to all equations). But the symbols are not scaling correctly, I'm mostly worried about the integral symbol. For example:
\documentclass{beamer}
\usepackage{lmodern}
\usepackage{relsize}
\usepackage{amsfonts}
\usepackage{amsmath}
\usepackage{amssymb}
\begin{document}
\begin{frame}
\begin{align*}
\int_0^1 \frac{d}{dx} f(x) dx = f(1) - f(0)
\end{align*}
\begin{align*}
\mathlarger{\mathlarger{\int_0^1 \frac{d}{dx} f(x) dx = f(1) - f(0)}}
\end{align*}
\begin{landscape}
\begin{center}
\resizebox{7cm}{!}{$\int_0^1 \frac{d}{dx} f(x) dx = f(1) - f(0)$}
\end{center}
\end{landscape}
\end{frame}
\end{document}
As proof of concept
First: regular; second: \mathlarger; third: \resizebox
Just the regular has the nicely fit integral symbol
\showoutputconfirms that the smaller integral sign is taken from\OMX/cmex/m/n/10.95, while the second comes from\OMX/cmex/m/n/14.4. – GuM Sep 26 '18 at 23:06\usepackage{lmodern}in your document? The example with\resizeboxshould have$\displaystyle...$– egreg Sep 26 '18 at 23:13lmodernloadslmexfonts (that take the place ofcmexones) at fixed size. I too was suspecting you were using that package. It is possible to add a patch and still use it, anyway. – GuM Sep 26 '18 at 23:18