答案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
来自这回答。