La nota al pie entra en conflicto con mathalfa

La nota al pie entra en conflicto con mathalfa

Este es mi ejemplo de trabajo mínimo (en PDFLaTeX):

\documentclass[12pt]{article} \usepackage{amsmath, amsthm, amssymb, geometry, setspace} \usepackage[frak=esstix]{mathalfa} \usepackage{hyperref} \title{Title} \author{Author} \date{\today} \setstretch{1.2} \begin{document} \maketitle $\mathfrak{G}$\footnote{This is footnote}.$\mathfrak{G}$ \end{document}

El primero \mathfrak{G}tiene buena pinta pero el segundo no. Parece que cualquier \mathfrakposterior \footnoteno se puede procesar correctamente. Si eliminamos el mathalfapaquete, no se producirá ningún error. Pero eso no es lo que quiero. Lo intenté mucho pero todos los intentos fallaron. Se agradece cualquier ayuda.

Respuesta1

Deberías cargar el mathalfabefore amsmath. El siguiente código me funciona perfectamente:

\documentclass[12pt]{article} 
\usepackage[frak=esstix]{mathalfa} 
\usepackage{amsmath, amsthm, amssymb, geometry, setspace} 
\usepackage{hyperref} 
\title{Title} 
\author{Author} 
\date{\today} 
\setstretch{1.2} 
\begin{document} 
\maketitle 
$\mathfrak{G}$\footnote{This is footnote}.$\mathfrak{G}$ 
\end{document}

información relacionada