Eu usei esse código para produzir o 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}
e aparece no seguinte formato, .1 Appendix A
conforme mostrado na imagem
como pegar carona, .1
então terei apenasAppendix A
Além disso, como fazer com que o cabeçalho do apêndice tenha o título da seção à esquerda e o número da página à direita do cabeçalho
alguma sugestão?
Responder1
Na verdade, em uma aula de documento de livro, os apêndices são escritos 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}