如何删除脚注中 linguex 示例的错误缩进?

如何删除脚注中 linguex 示例的错误缩进?

课程的脚注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

相关内容