could you please help me, how to rename appendix label?
e.g.:
Code: Select all
Appendix A This is my appendix chapter
Code: Select all
MyAppx A This is my appendix chapter
thanks a lot
working example:
Code: Select all
\documentclass[oneside,english]{book}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\setcounter{secnumdepth}{3}
\setcounter{tocdepth}{3}
\usepackage{babel}
\begin{document}
\chapter{Sample chapter}
some text here
\appendix
\chapter{The first appendix}
some text \#2
\chapter{The second appendix}
some text \#3
\end{document}