Utilicé este código para producir el apéndice.
\documentclass [a4paper,12pt,oneside,final]{book}
\usepackage[titletoc,title]{appendix}
\begin{document}
.
.
.
.
\clearpage
\appendix
\newpage
\section{Appendix A}
Stuff here
\section{Second Appendix}
Stuff here
\section{Third Appendix}
Stuff here
\end{document}
y aparece en el siguiente formato .1 Appendix A
como se muestra en la imagen
cómo llegar, .1
así que solo tendréAppendix A
Además, cómo hacer un mosaico de encabezado para el apéndice, tome el título de la sección a la izquierda y el número de página a la derecha del encabezado.
¿cualquier sugerencia?
Respuesta1
En realidad, en una clase de documento de libro, los apéndices se escriben como capítulos.
\documentclass [a4paper,12pt,oneside,final]{book}
\usepackage[titletoc,title]{appendix}
\pagestyle{headings} %% for headings, for more customization, use fancyhdr package
\begin{document}
.
%\frontmatter %% better to use this mark up
.
.
.
%\mainmatter %% better to use this mark up
\begin{appendices}
\chapter{Appendix A}
\section{Stuff here}
\clearpage
Some
\chapter{Second Appendix}
Stuff here
\chapter{Third Appendix}
Stuff here
\end{appendices}
%%backmatter %% better to use this mark up
\end{document}