thebusterazz” post=93898Grazie mille. Sto usando questo codice
`\documentclass{article}
\usepackage{endnotes}\let\footnote=\endnote
\begin{document}
text\footnote{test footnote}
\newpage
\theendnotes
\end{document}`
Ma ci sarebbe il modo di mantenere sia le note a piè pagine ( nelle varie pagine ) e sia nell’elenco finale?
Perché così le sposta tutte alla fine e io invece vorrei mantenere i riferimenti pagina per pagina 🙂
Non ho idea se sia una totale porcheria o meno, ma `
\documentclass{article}
\usepackage{endnotes}
\setcounter{endnote}{0}
\newcommand{\footendnote}[1]{%
\footnote{#1}
\stepcounter{endnote}
\endnotetext{#1}
}
\begin{document}
text\footendnote{test footnote}
some text\footendnote{Another test}
\newpage
\theendnotes
\end{document}
` sembra funzionare.
Ciao
Claudio