Quando usados em conjunto, como no MWE, o texto pode apresentar marcas numeradas idênticas, o que é bastante confuso.
Quero que as notas neste MWE sejam ordenadas de 1 a 9, em vez de três séries indistinguíveis de 1 a 3.
Soluções mais inteligentes (usar marcas de cores diferentes, misturar números arábicos e romanos com marcas alfabéticas, outras que você possa imaginar...) também são bem-vindas.
\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}
Responder1
Não tenho certeza se é aconselhável ter três tipos diferentes de notas. Isso parece estar predestinado a confundir os leitores. Tê-lostodosnumerado com o mesmo contador me parece ainda mais confuso: por que o número 1 está na margem, o número 2 no rodapé e o número 3 no final da seção? Existe algum padrão nisso?
Se realmente todos os três tipos de notas forem necessários, a coisa mais simples para mim parece usar diferentes tipos de formatos de contador:
\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}