\documentclass{mwrep}
\begin{document}
\tableofcontents
\chapter{Blabla}
Aaaa
\chapter{Lablab}
Silly equation \ref{eq:silly} in appendix \ref{ap:1}.
\appendix
\chapter{Something more}\label{ap:1}
\begin{equation}\label{eq:silly}
2+2=5
\end{equation}
\end{document}
I got:
Contents
1. Blabla
2. Lablab
A. Something more
I need:
Contents
1. Blabla
2. Lablab
Appendix A. Something more
How can make every appendix in form: "Appendix A", "Appending B" etc?
EDIT:
I need a change at ToC and in the document (header of chapter).
How can I change a name of 'Appendix' if I want to use other word?

