所有脚注、边注和尾注都有独特的计数器

所有脚注、边注和尾注都有独特的计数器

当像在 MWE 中一样一起使用时,文本可能会受到相同数字标记的困扰,这相当令人困惑。

我希望这个 MWE 中的标记按 1 到 9 的顺序排列,而不是按 1 到 3 的三个难以区分的顺序排列。

也欢迎更多巧妙的解决方案(使用不同颜色的标记、将阿拉伯数字和罗马数字与字母标记混合,以及您能想象到的其他...)。

\documentclass{article}
\usepackage{sidenotes}
\usepackage{endnotes}

\begin{document}

See the sidenote\sidenote{A side note} and the footnote \footnote{A foot note}. 
See the sidenote\sidenote{A side note} and the footnote \footnote{A foot note}. 
See the endnote\endnote{An end note}. See the endnote\endnote{An end note}. 
See the note\sidenote{A side note} (of what type?) and the 
note\footnote{A foot note}(what type?) and the note\endnote{An end note} 
(where?).

\theendnotes

\end{document}

答案1

我不太确定有三种不同的注释是否明智。这似乎注定会让读者感到困惑。全部用相同的计数器编号似乎更让我困惑:为什么数字 1 在页边,数字 2 在页脚,而数字 3 在节末?这其中有什么规律吗?

如果确实需要所有三种注释类型,那么对我来说最简单的方法似乎是使用不同类型的计数器格式:

\documentclass{article}
% use symbols for footnotes:
\usepackage[symbol]{footmisc}

\usepackage{sidenotes}    
% change the sidenote counter format:
\renewcommand*\thesidenote{\alph{sidenote}}

\usepackage{endnotes}

\begin{document}

See the sidenote\sidenote{A side note} and the footnote \footnote{A foot note}.
See the sidenote\sidenote{A side note} and the footnote \footnote{A foot note}.
See the endnote\endnote{An end note}. See the endnote\endnote{An end note}. See
the note\sidenote{A side note} (of what type?) and the note\footnote{A foot note}%
(what type?) and the note\endnote{An end note} (where?).

\theendnotes

\end{document}

相关内容