
É possível obter o "Apêndice X" na mesma linha, talvez com dois pontos após a letra do identificador do apêndice?
MWE:
\documentclass{report}
\begin{document}
\tableofcontents
\chapter{CHapter one name}
\chapter{Chapter two name two}
\appendix
\chapter{Theory}
\section{Some theory}
\section{Some other theory}
\chapter{Method}
\section{LOLZ}
\section{ROLF}
\end{document}
Como você pode ver, o PDF compilado escreve:
Appendix A
Theory
A.1 Some Theory
Eu quero que seja algo assim:
Appendix A: Theory
A.1 Some Theory
Responder1
Aqui está uma maneira, com titlesec
e apptools
. Os capítulos do apêndice são colocados no topo da página, mas os parâmetros de espaçamento podem ser alterados à vontade:
\documentclass{report}
\usepackage{showframe}
\usepackage{titlesec}
\usepackage{apptools}
\AtAppendix{\titleformat{\chapter}[block]{\LARGE\bfseries}{\appendixname~\thechapter:}{0.333em}{}%
\titlespacing*{\chapter}{0pt}{-20pt}{40pt}}
\begin{document}
\tableofcontents
\chapter{Chapter one name}
\chapter{Chapter two name two}
\appendix
\chapter{Theory}
\section{Some theory}
\section{Some other theory}
\chapter{Method}
\section{LOLZ}
\section{ROLF}
\end{document}