在乳胶文档(文章或书籍)中是否可以有两个不同的平行脚注序列?
例如 :
脚注序列 A:作者的原始注释,用阿拉伯数字编号(默认脚注)。
脚注序列B:译者、评论家等做出的补充评论,用罗马数字编号,并最终采用不同的字体排版。
非常感谢!
答案1
类memoir
包含book
、report
和article
类,其中有一个命令\newfootnoteseries{<ucletter>}
用于创建名为 的新脚注系列\footnote<ucletter>
。总共可以创建 26 个系列。
\documentclass%[article]% for article style
{memoir}
%%% NOTE: NO \footnoteA,B,C DEFINED BY MEMOIR
\newfootnoteseries{B}% a new series
\renewcommand{\thefootnoteB}{\roman{footnoteB}} % Roman numerals
\renewcommand{\footttextfontB}{\itshape\footnotesize} % italic text
\begin{document}
Text with regular footnote\footnote{Regular footnote} and some more text
with B series footnote\footnoteB{B series} and yet more text with a
regular\footnote{Normal footnote} footnote.
\end{document}
页脚中的脚注按顺序打印(例如,示例中所有常规脚注后面都是所有 B 脚注)。