I want to fix the "bug" of the \implies symbol, which is not rendered properly for large font sizes. Accordingly to this answer, I used the lmodern package and redefined a symbol (see the answer).
But there is, seemingly, a clash between KOMA-Script and modern packages, as the MWE shows (the sign \int is not rendered at the right size):
\documentclass{scrreprt}
\usepackage{amsmath}
\usepackage{lmodern}
\KOMAoptions{fontsize=20pt}
\begin{document}
$\displaystyle \int_0^1 f(t) dt \implies 1=1$
\end{document}
So, my question is: How to fix the "bug" of \implies so that it still works with the scrreprt package? The "bug" of \implies is the bumps you can see in the middle of the implies symbol.
Remark: I use the KOMA-Script package only to modify the font size in the standalone package, with
\documentclass[class=scrreprt]{standalone}


\documentclass{article}\begin{document}\Huge$\Longrightarrow$\end{document}. The problem is unrelated to KOMA-Script andlmodern.amsmath\Impliesuses\Longrightarrowas underlying symbol. The symbol is composed of=and\Rightarrow. They do not match too well. – Heiko Oberdiek May 20 '16 at 17:08