从 1 开始脚注计数器

从 1 开始脚注计数器

我在文档中使用符号作为脚注,但我希望脚注以匕首开头,而不是星号。有没有办法更改脚注的默认起始计数器,使其始终从 1(匕首)开始,用于每个新页面?\setcounter{footnote}{1}似乎不起作用

\documentclass[a4paper,11pt,twoside]{book}
\usepackage[utf8]{inputenc}
\usepackage[symbol]{footmisc}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\usepackage{perpage}
\MakePerPage{footnote}

\begin{document}

I'd like the footnote to start with a dagger by default\footnote{but it's an asterisk} without having to specify \verb|\footnote[1]{the number}|

\end{document}

答案1

此用例在每页中描述包装手册在第一页:

\MakePerPage[2]{footnote}

将在每页上以 2 开始脚注编号(可选参数默认为 1)。2 可能是一个奇怪的数字,除非你使用了类似

\renewcommand\thefootnote{\fnsymbol{footnote}}

并想用匕首开始行动。

梅威瑟:

\documentclass[a4paper,11pt,twoside]{book}
\usepackage[symbol]{footmisc}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}

\usepackage{perpage}
\MakePerPage[2]{footnote}

\begin{document}

I'd like the footnote to start with a dagger by default\footnote{but it's an asterisk}

\end{document}

结果:

在此处输入图片描述

答案2

footmiscperpage本身提供了该选项——无需加载perpage 包裹。该footmisc包还允许您定义自己喜欢的符号序列作为脚注标记。例如:

在此处输入图片描述

\documentclass{article}
\usepackage[perpage,symbol*]{footmisc}
%% Hopefully, your document has no pages with more than 9 footnotes:
\DefineFNsymbols*{namedisp}{{$\dagger$}{$\ddagger$}\S%
                            \P{$\Vert$}*{$\dagger\dagger$}%
                            {$\ddagger\ddagger$}{**}}
\setfnsymbol{namedisp}
\begin{document}

.\footnote{a} .\footnote{b} .\footnote{c} 
.\footnote{d} .\footnote{e} .\footnote{f} 
.\footnote{g} .\footnote{h} .\footnote{i} 
\end{document}

相关内容