我想重置文章中每个部分的脚注计数器,我正在使用这个footmisc
包。我已经看到了这个perpage
选项,同样,关于如何为章节实现这一点也存在疑问,但我希望为章节实现相同的功能,并且正在努力寻找适用的解决方案。
目前我的序言包括(除其他外):
\documentclass[12pt, a4paper, twoside]{article}
\usepackage[bottom]{footmisc}
类似问题:
答案1
要么使用
\makeatletter
\@addtoreset{footnote}{section}
\makeatother
或者
\counterwithin*{footnote}{section}
可以*
防止\counterwithin
将章节编号添加到footnote
数字前面。
第一个版本不需要包,第二个版本需要包chngcntr
。
\documentclass[12pt, a4paper, twoside]{article}
\usepackage[bottom]{footmisc}
\usepackage{chngcntr}
\usepackage{hyperref}
\counterwithin*{footnote}{section}
\begin{document}
\section{A section}
A stupid footnote\footnote{Some stuff} and another one here\footnote{Boring footnote}
\clearpage
\section{Another important section}
A stupid footnote\footnote{Some stuff} and another one here\footnote{Boring footnote}
\end{document}