すべての脚音、サイドノート、エンドノート用の独自のカウンター

すべての脚音、サイドノート、エンドノート用の独自のカウンター

MWE のように一緒に使用すると、テキストに同じ番号のマークが多数表示され、混乱を招く可能性があります。

この MWE のマークを、1 から 3 までの区別のつかない 3 つのシリーズではなく、1 から 9 の順序に並べたいと思います。

より巧妙な解決策(異なる色のマークを使用する、アラビア数字とローマ数字をアルファベットのマークと混ぜる、その他想像できるもの)も歓迎します。

\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

3種類のメモを用意するのは賢明ではないと思います。これは読者を混乱させる運命にあるようです。全て同じカウンターで番号付けされていると、さらに混乱するようです。なぜ 1 番が余白にあり、2 番がフッターにあり、3 番がセクションの最後にあるのでしょうか。何かパターンがあるのでしょうか。

本当に 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}

関連情報