![LaTeX Beamer: hacer que el texto en modo matemático también serif](https://rvso.com/image/420047/LaTeX%20Beamer%3A%20hacer%20que%20el%20texto%20en%20modo%20matem%C3%A1tico%20tambi%C3%A9n%20serif.png)
Estoy usando una fuente sans-serif para mis diapositivas de proyector, pero la fuente matemática serif normal para mis ecuaciones. Sin embargo, si lo uso \text{}
en modo matemático, se usa la fuente sans-serif. Me gustaría exigir que se utilice la fuente serif al utilizar \text{}
.
Aquí hay un MWE
\documentclass{beamer}
\usefonttheme[onlymath]{serif}
\begin{document}
\begin{frame}
I would like to make $f_\text{LO}$ look like $f_\mathrm{LO}$.
\end{frame}
\end{document}
Actualizar:Descubrí que no debería redefinir \text{}
sino utilizar \textrm{}
la fuente serif en modo matemático. Al hacer eso, aún puedo agregar texto normal usando \text{}
.