獨特的計數器可記錄所有腳香、側香和尾香

獨特的計數器可記錄所有腳香、側香和尾香

當一起使用時,如在 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}

相關內容