如何使腳註標記和腳註居中

如何使腳註標記和腳註居中

我想知道是否可以將包含詩節的腳註居中;例如,考慮以下指示腳註的內容:

在此輸入影像描述

註腳顯示在頁面底部,如下所示:

在此輸入影像描述

我想在 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會改變經文的位置。較小的長度向右移動。根據詩句行的寬度來調整它。

相關內容