Cuando se usan juntos, como en el MWE, el texto puede estar plagado de marcas numeradas idénticas, lo que resulta bastante confuso.
Quiero tener marcas en este MWE ordenadas del 1 al 9 en lugar de tres series indistinguibles del 1 al 3.
También son bienvenidas soluciones más ingeniosas (usar marcas de diferentes colores, mezclar números arábigos y romanos con marcas alfabéticas, otras que puedas imaginar...).
\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}
Respuesta1
No estoy tan seguro de que sea prudente tener tres tipos diferentes de notas. Esto parece estar destinado a confundir a los lectores. tenerlostodonumerados con el mismo contador me parece aún más confuso: ¿por qué está el número 1 en el margen, el número 2 en el pie de página y el número 3 al final de la sección? ¿Tiene algún patrón?
Si realmente se requieren los tres tipos de notas, lo más simple para mí 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}