如何对齐脚注中的句子

如何对齐脚注中的句子

如何在一个脚注中垂直对齐多个句子?例如,在下面的屏幕截图中,我需要使三个文本及其数字垂直对齐:

正如此屏幕截图所示,我需要使三个文本及其数字垂直对齐

梅威瑟:

\documentclass[20pt]{extarticle}

\begin{document}

This is some examples\footnote{\label{subtypes examples}  1 - text\\ 2 - text\\  3 - text}
\end{document}

答案1

懒惰黑客:

LaTeX 标准类(和extsizes类)使用 框来1.8 em排版脚注编号,并使用 段落缩进1 em。您可以将段落缩进更改为相同的1.8 em

在此处输入图片描述

\documentclass[20pt]{extarticle}

\title{Title}
\author{Me}
\date{\today}

\begin{document}
\maketitle
This is some example text\footnote{\label{subtypes examples}%
\parindent1.8em
1 -- Text\par
2 -- Text\par
3 -- Text}
\end{document}

答案2

假设您确实想要一个列表,那么我会使用适当的枚举结构。在这里,我定义了一个fnenum与脚注编号对齐的新枚举列表。

\documentclass[20pt]{extarticle}
\usepackage{enumitem}
\newlist{fnenum}{enumerate}{1}
\setlist[fnenum]{label={\arabic*~--~},before=\vspace{-\baselineskip},nosep,labelsep=0pt}
\begin{document}

This is some examples\footnote{\label{subtypes examples}
\begin{fnenum}
\item An item
\item Another item
\item A third
\end{fnenum}}
\end{document}

代码输出

相关内容