Ich habe diesen Code verwendet, um Anhang zu erstellen
\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}
und es erscheint im folgenden Format, .1 Appendix A
wie im Bild gezeigt
wie bekomme ich eine Fahrt von .1
so werde ich nur habenAppendix A
Außerdem erfahren Sie, wie Sie die Kopfzeile für den Anhang so gestalten, dass sie den Abschnittstitel links und die Seitenzahl rechts von der Kopfzeile enthält.
irgendein Vorschlag?
Antwort1
Tatsächlich werden Anhänge in einer Buchdokumentklasse als Kapitel geschrieben.
\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}