
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 \mathfrak
posterior \footnote
no se puede procesar correctamente. Si eliminamos el mathalfa
paquete, 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 mathalfa
before 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}