Code: Select all
\documentclass[12pt,letterpaper]{article}
\usepackage[T1]{fontenc}
\usepackage[utf8]{inputenc}
\usepackage[french]{babel}
\usepackage{lmodern} % interaction between these two packages ?
\usepackage{amsmath} %
\begin{document}
\begin{equation}
\sqrt{\varphi^2 - \vartheta^2} = \sqrt{E^2 - B^2}.
\end{equation}
\end{document}
If I comment out the lmodern package, the first square-root sign turns fine. If I comment-out BOTH the lmodern and the amsmath packages, the first square-root sign turns ugly (the second square-root doesn't change). So I guess the amsmath package is what gives a nice output, while the lmodern package turns-off that feature.
How can I tell LaTeX to keep the nice amsmath output, while still using the lmodern package ?
Changing the packages loading order doesn't help here.