
これは私の最小限の動作例です(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}
1 つ目\mathfrak{G}
は良さそうですが、2 つ目はそうではありません。それ\mathfrak
以降は\footnote
適切に処理できないようです。mathalfa
パッケージを削除すると、エラーは発生しません。しかし、それは私が望んでいることではありません。いろいろ試しましたが、すべて失敗しました。どなたか助けていただければ幸いです。
答え1
mathalfa
beforeをロードする必要がありますamsmath
。次のコードは私の場合は完璧に動作します:
\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}