我正在尝试使用 manyfoot 包创建一个包含两个不同级别脚注的文档。我希望第二级脚注的字体大小小于第一级(例如,第一级为 footnotesize,第二级为 scriptsize)。我该如何实现?
这是我的最小工作示例:
\documentclass[a4paper, 12pt, twoside]{book}
\usepackage{perpage}
\usepackage[perpage]{manyfoot}
\DeclareNewFootnote{A}[alph]
\begin{document}
Some random text\footnote{First level of footnotes.} here\footnoteA{Second level of footnotes, which I would like to have a smaller font size.}.
\end{document}
答案1
的文档介绍了在之前应发布的manyfoot
钩子。\SetFootnoteHook{}
\DeclareNewFootnote
请注意,您始终可以通过命令行/终端输入 来查找文档texdoc manyfoot
,这适用于任何软件包。该文档也可在以下位置找到:http://ctan.org/pkg/manyfoot
查找各种小问题/功能的文档可能听起来很乏味,但软件包文档往往写得很好,易于浏览。同时,它还能帮助您了解 LaTeX 的工作原理。
输出
代码
\documentclass[a4paper, 12pt, twoside]{book}
\usepackage{perpage}
\usepackage[perpage]{manyfoot}
\SetFootnoteHook{\scriptsize}
\DeclareNewFootnote{A}[alph]
\begin{document}
Some random text\footnote{First level of footnotes.} here\footnoteA{Second level of footnotes, in a smaller font size.}.
\end{document}