I would like to display a "big" formula in a beamer frame. If I test the \Large command this way
\documentclass[hyperref={colorlinks=true}]{beamer}
\usepackage[utf8]{inputenc}
\usepackage[italian]{babel}
\usepackage{lmodern}
\usepackage[T1]{fontenc}
\uselanguage{Italian}
\languagepath{Italian}
\usetheme{Warsaw}
\usepackage{pgf,tikz}
\usetikzlibrary{arrows}
\usetikzlibrary{quotes}
\usetikzlibrary{shapes.geometric,intersections,calc}
\usepackage{xcolor}
\usepackage{booktabs}
\usepackage{graphicx}
\begin{document}
\begin{frame}{Test}
\[
f(x)=\sum_{n=-\infty}^{+\infty}c_ne^{inx}
\]
\Large
\[
f(x)=\sum_{n=-\infty}^{+\infty}c_ne^{inx}
\]
\end{frame}
\end{document}
what I see is that the second formula is badly magnified: every symbol or letter is ok, but not the \sum operator, which remains small. What am I doing wrong?
This is what I see:


lmodern? – egreg Aug 10 '18 at 10:19fixcmexpackage (cf. https://tex.stackexchange.com/q/137141/14500 and https://tex.stackexchange.com/q/252354/14500). – Paul Gaborit Aug 10 '18 at 12:47