如何重新启动 \footnote 为每页编号

发布于 2024-09-18 12:49:54 字数 1459 浏览 3 评论 0原文

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

木落 2024-09-25 12:49:54

一种解决方案是 perpage 包,它提供了一种用于重置每页计数器的通用机制。将命令 \usepackage{perpage}\MakePerPage{footnote} 放入文档序言中,紧接在 \documentclass 行之后和 < code>\begin{document} 行。

\documentclass{article}
\usepackage{perpage} %the perpage package
\MakePerPage{footnote} %the perpage package command
\begin{document}

界面非常简单:\MakePerPage{footnote} 就可以完成这项工作。如果您想以 1 以外的值重新启动计数器(例如,为了避免 LaTeX 脚注符号列表中的某些内容),您可以使用:\MakePerPage[2]{footnote}。这是一个一流的软件包,小巧而高效。

参考:TeX FAQ 条目 “每页”编号的脚注

One solution is the perpage package, that provides a general mechanism for resetting counters per page. Put the command \usepackage{perpage} and \MakePerPage{footnote} into your document preamble, immediately after the \documentclass line and before the \begin{document} line.

\documentclass{article}
\usepackage{perpage} %the perpage package
\MakePerPage{footnote} %the perpage package command
\begin{document}

The interface is pretty simple: \MakePerPage{footnote} will do the job. If you want to restart the counter at something other than 1 (for example to avoid something in the LaTeX footnote symbol list), you can use: \MakePerPage[2]{footnote}. It’s a first-rate package, small and efficient.

Reference: TeX FAQ entry Footnotes numbered “per page”

遗忘曾经 2024-09-25 12:49:54

重置footnote计数器,或按页面重置:

Reset the footnote counter, or make it reset by page:

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文