I have a document (book class, see condensed working-example below) in the book class, in which I've got some endnotes (extra notes that get saved until the end of the document as opposed to printed at the bottom of the current or nearest right-hand page). I also have footnotes, which I want to remain independent; I've achieved this, and have them resetting every page, and have the endnotes resetting every new chapter or part.
Now, when I call \theendnotes I get a list of all the endnotes in the document in order, with the correct numberings (i.e. having reset the counter every chapter/part). I would like the part/chapter divisions displayed as section/subsection headings respectively, and without these interfering with my table of contents.
I'm working with the endnotes package just now, but open to other ideas if they'd solve my problem without me getting my hands too dirty (I'm no pro when it comes to LaTeX hackery). The reason I have both footnotes and endnotes is that I'm translating an old academic text, and I need to be [reasonably] faithful to the original formatting. Working example below:
\documentclass{book}
\usepackage{endnotes}
\renewcommand\enoteheading{\chapter*{\notesname}\mbox{}\par\vskip-\baselineskip}
\makeatletter
\@addtoreset{footnote}{page} % Reset footnote "numbering" (symbols) every new page
\@addtoreset{endnote}{part} % Reset endnote numbering every new part
\@addtoreset{endnote}{chapter} % Reset endnote numbering every new chapter
\makeatother
\usepackage{footmisc}
\renewcommand{\thefootnote}{\fnsymbol{footnote}}%
\begin{document}
Some text,\endnote{This endnote will naturally be numbered 1, as the first endnote in the document.}
not in any structural part of the document.
\part{Part One}
Some\footnote{This is the first footnote, symbolised by a star.}
text,\footnote{Second footnote, a pair of stars.}
not\endnote{This endnote will naturally be numbered 1, as the first endnote in the document.}
part\footnote{Third footnote, a solitary dagger.}
of any chapter.
\chapter{Chapter 1}
This\footnote{A footnote, should be a single star (symbol \#1), not a pair of daggers (\#4) because of reset footnote numbering at new page.}
is chapter one.\endnote{This endnote should be numbered 1, since it's the first of a chapter.}
\part{Part Two}
Text.\endnote{This should also be numbered 1, since it's the first in its part.}
\theendnotes
\end{document}

pagenotespackage, which seems to address a lot of the issues, but falls at the last hurdle with respect to its behaviour respecting\parts; if we have some text falling before any of the\chapterinvocations in its part then it's in "chapter n-1" wherenis the number of the first chapter in that\part. – Nick Loughlin Jul 06 '12 at 16:48