I need to change the font-size of my document. So far, I use KOMA-Script in order to do this.
I noticed that the appearance of the same mathematical text is not the same with different font sizes. I think it is a bug of KOMA-Script. Do you know another way to change the font size globally? Or, can this bug of KOMA-Script be fixed?
Thanks
MWE
\documentclass{scrreprt}
\usepackage{amsmath}
\KOMAoptions{fontsize=50pt}
\begin{document}
50pt\
$\sqrt{\displaystyle \int_0^1 f(t) dt + \displaystyle \int_0^1 f(t) dt}$
\end{document}
and
\documentclass{scrreprt}
\usepackage{amsmath}
\KOMAoptions{fontsize=10pt}
\begin{document}
10pt\
$\sqrt{\displaystyle \int_0^1 f(t) dt + \displaystyle \int_0^1 f(t) dt}$
\end{document}

