I'm using \usepackage[title,titletoc]{appendix} and putting my appendices in the appendices environment. I'm trying to remove the appendix page numbers from the TOC.
I've looked at the documentation for the appendix packaged and tried using \noappendicestocpagenum without success.
\documentclass{article}
\usepackage[title,titletoc]{appendix}
\usepackage{lipsum}
\begin{document}
\tableofcontents
\clearpage
\section{first}
\section{second}
\pagebreak
\begin{appendices}
\section{additional material}
\setcounter{page}{1}
\renewcommand{\thepage}{\thesection -\arabic{page}}
\lipsum
\pagebreak
\section{more of it}
\setcounter{page}{1}
\renewcommand{\thepage}{\thesection -\arabic{page}}
\lipsum
\end{appendices}
\end{document}

Advice on better formatting of my page numbers would also be welcome.

\documentclass{...}and ending with\end{document}. – adn Apr 15 '15 at 19:21tocloftand afterappendicesenvironment do\addtocontents{toc}{\cftpagenumbersoff{section}}. – adn Apr 16 '15 at 17:21