如何为歌词表制作类似脚注

如何为歌词表制作类似脚注

考虑一下代码

\documentclass[14pt]{memoir}
\begin{document}
\thispagestyle{empty}
\begin{verse}
\begin{bfseries}
\hskip -12pt* A special footnote \\[1pt]
\hskip 15pt To be put \textit{this way;} \\[1pt]
(Not the way footnotes \\[1pt]
\hskip 15pt Are usually displayed.)
\end{bfseries}
\end{verse}
\end{document}

产生

在此处输入图片描述

问题:我如何定义一种新的脚注,当调用时,显示如图所示的脚注标记,并以通常的方式在页面底部显示相应的文本?我希望能够对我设计并目前使用的歌词表进行这样的操作。

评论:我仍然想保留\footnote以通常的方式制作脚注的命令。

谢谢。

答案1

一种方法是通过包footmisc,在我看来,该文档可以得到改进。

一开始我只是简单地将您的代码复制为脚注文本。这并不完美,因为您仍然需要以某种方式替换脚注中的符号。(并且%这些行的末尾可能都缺失了)

结果

\documentclass[10pt]{article}
\usepackage[symbol*]{footmisc}

\begin{document}

Example\footnote{\begin{bfseries}
\hskip -12pt* A special footnote \\[1pt]
\hskip 15pt To be put \textit{this way;} \\[1pt]
(Not the way footnotes \\[1pt]
\hskip 15pt Are usually displayed.)
\end{bfseries}}:

\begin{verse}
    A dozen, a gross, and a score\\
    Plus three times the square root of four\\
    Divided by seven\\
    Plus five times eleven\\
    Is nine squared and not a bit more.
\end{verse}

\end{document}

答案2

\documentclass[14pt]{memoir}
\usepackage[paperwidth=5in,paperheight=3in]{geometry}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}
\newcommand\footnoteB[1]{\hskip -15pt\footnote{#1}{\hspace*{8pt}}}
\begin{document}
\thispagestyle{empty}

\begin{verse}
\begin{bfseries}
\footnoteB{This is a special footnote.}A special footnote \\[1pt]
\hskip 15pt To be put \textit{this way;} \\[1pt]
(Not the way footnotes \\[1pt]
\hskip 15pt Are usually displayed.)
\end{bfseries}
\end{verse}
\end{document}

给出

在此处输入图片描述

\hskip\hspace*可以调整以适应。

相关内容