I am using \fancyhdr package for the headings and report as a document class
samplecode is given below
\documentclass[a4paper,11pt]{report}
\usepackage[toc,page]{appendix}
\usepackage{fancyhdr}
\pagestyle{fancy}
\renewcommand{\chaptermark}[1]{%
\markboth{\chaptername
\ \thechapter.\ #1}{}}
\fancyhf{}
\fancyhead[LE,LO]{\slshape \leftmark}
\rhead{\thepage}
\cfoot{}
\begin{document}
\pagenumbering{arabic}
\input{chap_01}
\input{chap_02}
\input{chap_03}
\begin{appendices}
\input{Appendix_01}
\end{appendices}
\end{document}
Now everything seems to be working but on the appendix page i get:

where as instead of chapter i would like 'Appendix A. Parameter Definition'.
Suggestions?


appendicesroutine? – barbara beeton Dec 23 '13 at 20:13\chaptermarkthis would have been automatic. – karlkoeller Dec 23 '13 at 20:19