如何在 LaTeX 上添加两组“不同的”脚注?

如何在 LaTeX 上添加两组“不同的”脚注?

在此处输入图片描述

我正在写一篇纪念文章,我想在第一个脚注中提到它是献给某人的。我已经想出了如何添加不带编号的脚注。但我还希望献词用上下线与其他脚注分开(类似于图片中的例子)。我该怎么做?

答案1

以下套餐manyfoot.sty可能符合您的要求MWE

\documentclass{book}
\usepackage{manyfoot}

\newfootnote{A}
\newfootnote{B}
\newcounter{footnoteA}
\newcommand{\footnoteA}{%
   \stepcounter{footnoteA}%
   \Footnotemark\thefootnoteA \FootnotetextA{}}
\newcounter{footnoteB}
\newcommand{\footnoteB}{%
   \stepcounter{footnoteB}%
   \Footnotemark\thefootnoteB \FootnotetextB\thefootnoteB}
\renewcommand{\thefootnoteB}{\roman{footnoteB}}

\begin{document}

Blah\footnoteA{This is for test}

Blah\footnoteB{This is for test}

\end{document}

答案2

\documentclass{article}
\newcommand\blfootnote[1]{%
    \begingroup
    \renewcommand\thefootnote{}\footnote{#1}%
    \addtocounter{footnote}{-1}%
    \endgroup
}

\begin{document}
\blfootnote{Dedicated to bla bla bla\smallskip\footnoterule}\blfootnote{This paper constitutes XYZ\bigskip}\blfootnote{Springer Publication}
\end{document}

这是你想要的吗?

在此处输入图片描述

PS - 的代码blfootnote来自回答。

相关内容