如何将脚注标记和脚注居中

如何将脚注标记和脚注居中

我想知道是否可以将包含诗节的脚注居中;例如,考虑以下内容,其中标明了脚注:

在此处输入图片描述

并且脚注显示在页面底部,如下所示:

在此处输入图片描述

我想在 LateX 中做到这一点。

有人知道怎么做吗?(我能够生成星号而不是编号的脚注,但我不知道如何显示所示的节。)

感谢您提供的任何帮助。

谢谢。

答案1

使用该verse包进行尝试。

% centerfootnoteprob.tex  SE 569825

\documentclass{article}
\usepackage{verse}
\begin{document}

Some text\footnote{\begin{verse}[1in] 
  The poor ... \\ 
  with voice ... \end{verse}}

More text\footnote{Regular footnote with lots of words in it, maybe 
exceeding a single line of text.}

\end{document}

环境的可选长度参数verse会移动诗句文本的位置。长度越小,文本位置越右移。根据诗句行宽进行调整。

相关内容