课程的脚注scrbook
带有默认缩进。不幸的是,linguex
似乎忽略了它并回到了正文的边缘。
\documentclass{scrbook}
\usepackage{linguex}
\begin{document}
This is where the footnote attaches.\footnote{Here comes an example sentence within a footnote:
\ex. Here it is.
And now it's over.}
\end{document}
知道如何告诉 linguex 如何表现吗?
答案1
linguex
重新定义了\footnotetext
似乎与以下内容不兼容scrbook
:试试这个:
\footnote{Here comes an example sentence within a footnote:\\
\parbox{\linewidth}{\ex. Here it is.
}
And now it's over.}
需要在此处\\
之前添加\parbox
,以避免缩进\parindent
。