
이것은 나의 최소한의 작업 예입니다(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}
첫 번째는 \mathfrak{G}
좋아 보이지만 두 번째는 그렇지 않습니다. \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}