如果我在脚注内创建表格,则脚注编号的位置不在脚注的第一行,而是在中间:
\documentclass{article}
\begin{document}
Some text.\footnote{Some text inside a footnote. Longer than one line. The footnote number is in the first line.}
Some more text.\footnote{%
\begin{tabular}{ll}
First column & Second column \\
Second row & Something. \\
Third row & Now here roughly we have the footnote number \\
Fourth row & Something more. \\
Fifth row & Something more. \\
Sixth row & Something more. \\
Seventh row & Something more.
\end{tabular}
}
\end{document}
这不是我所期望的。如何将数字移至顶部?
答案1
[t]
只需在您的环境中提供顶部对齐选项tabular
即可解决问题,即
\begin{tabular}[t]{ll}