我正在尝试创建一个包含多行 (3) 行的脚注,每行都有一个公式。我希望它看起来像这样:
Text¹
--------------------
¹ Footnotetext A=B
and C=D
but E \neq F
我已经尝试了 footmisc 包(可能不够好)并尝试了以下方法:多行脚注的布局和脚注缩进1.25cm 多行脚注。
答案1
TABstack 可以提供帮助,因为它的宽度不是整行,而只是内容宽度。为了使文本正确流动,第 1 列的第 1 行条目必须比其他第 1 列条目更宽。
\documentclass{article}
\usepackage{tabstackengine,amsmath,lipsum}
\TABstackMath
\textheight2.5in% FOR THIS MWE ONLY
\strutlongstacks{T}
\begin{document}
Here is a reference%
\footnote{
Footnote with \alignLongunderstack{%
\text{enough text} && A=&B\\ \text{and} && CC =& D\\ \text{but not} && E\neq& F}
}
and here is another%
\footnote{\lipsum[1]}
\end{document}