如何在“manyfoot”包的 para 功能中在脚注数字后使用破折号(-)或点(.)?

如何在“manyfoot”包的 para 功能中在脚注数字后使用破折号(-)或点(.)?

我想显示如下所示的脚注,而不是将其设为上标:

1-

或者

1.

我该怎么做?

\usepackage[para]{manyfoot}

\DeclareNewFootnote[para]{A}[roman]

所需的脚注如下

答案1

由于您没有提供任何内容MWE,我根据标准模板提出了建议,标签如下:

\documentclass[a4paper,12pt,twoside]{book} 
\usepackage{manyfoot}
\makeatletter
\def\@makefnmark{\hbox{\normalfont\@textsuperscript{\@thefnmark}}}
\renewcommand\@makefntext[1]{%
\let\@textsuperscript\relax    \parindent 1em%
    \noindent
    \hb@[email protected]{\hss\@makefnmark.}\ #1}
\makeatother
\begin{document}

This is for test\footnote{Footnote 1}.

This is for test\footnote{Footnote 2}.

\end{document}

如果这不符合您的要求,请告诉我...

相关内容