我发现有些类型的结构化文本很难很好地融入脚注中。真实的这里的用例是诗歌引用和类似内容,但我一直在尝试各种方式来强制我想要的外观,但它们最终要么偏移到脚注编号的右侧和下方,要么居中,而不是在脚注编号的右侧和同一行上。
脚注中逐项列举/枚举项目的对齐似乎与我想要的类似,但除非我误读了它,否则它要求您以正常的文本/段落行开始相关文本。
我尝试过的基本 MWE。(添加了 \hlines 以将 4,5,6 彼此“分隔”以提高可见性)。
% vim: spell spelllang=en
\documentclass[english]{memoir}
\usepackage{babel}
\usepackage[pangram]{blindtext}
\usepackage{enumitem}
\usepackage[hang,flushmargin]{footmisc}
\begin{document}
\footnote{\Blindtext[3][3]}
\footnote{
\begin{verse}
\Blindtext[3][3]
\end{verse}
}
\footnote{
\begin{tabular}{l}
The quick brown fox jumped over the lazy dog. \\
Jackdaws love my big Sphinx of Quartz. \\
Pack my box with five dozen liquor jugs.
\end{tabular}
}
\footnote{
\begin{tabular}{l}
The quick brown fox jumped over the lazy dog. \\
Jackdaws love my big Sphinx of Quartz. \\
Pack my box with five dozen liquor jugs. \\
\hline
\end{tabular}
}
\footnote{\begin{tabular}{l}
The quick brown fox jumped over the lazy dog. \\
Jackdaws love my big Sphinx of Quartz. \\
Pack my box with five dozen liquor jugs. \\
\hline
\end{tabular}
}
\footnote{\begin{itemize}[labelindent=1.5em,leftmargin=*,nosep,label={},itemsep=-1ex]
\item The quick brown fox jumped over the lazy dog. \\
\item Jackdaws love my big Sphinx of Quartz. \\
\item Pack my box with five dozen liquor jugs.
\end{itemize}
}
\end{document}