모든 발, 측면 및 끝 음표에 대한 고유 카운터

모든 발, 측면 및 끝 음표에 대한 고유 카운터

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

세 가지 종류의 메모를 갖는 것이 현명한 것인지 잘 모르겠습니다. 독자들에게 혼란을 주기 위한 의도인 것 같습니다. 그들을 갖는모두동일한 카운터로 번호를 매긴 것은 나에게 훨씬 더 혼란스러워 보입니다. 왜 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}

관련 정보