我使用 gb4e 作为示例。我可以在行中插入脚注\ex
,如下所示:
\begin{exe}
\ex It's ok\footnote{no problem}.
\end{exe}
但我无法在行中插入脚注\gll
,如下所示:
\begin{exe}
\ex It's ok.
\gll C'est parfait\footnote{no problem}\\
Ce est parfait\\
\end{exe}
当我将其放入行\footnote{}
中时\gll
,它无法编译。
如何在注释行中插入脚注?
非常感谢您的帮助!
答案1
\footnotemark
并且\footnotetext
似乎有效:
\documentclass{article}
\usepackage{gb4e}
\begin{document}
\begin{exe}
\ex It's ok.\footnote{no problem}
\gll C'est parfait\footnotemark\\
Ce est parfait\\
\end{exe}
\footnotetext{no problem?}
\end{document}