I'm currently working on my master thesis and I do have some layout problems with the appendices.
What I got after searching the forum
ToC
Chapter 1
- Section 1.1
...etc..
Appendices
Appendix A Title
Appendix B Title2
What I would like:
Chapter 1
- Section 1.1
...etc..
Appendices
- Appendix A Title
- Appendix B Title2
Could someone help me out? Preferably that this will also work in the PDF reader (so in short I want the appendix chapters to be shown as sections). However if I try to use sections my numbering screws up.
MWE:
Code: Select all
\documentclass[a4paper,fleqn]{book}
% Packages
\usepackage[colorlinks,linkcolor=black,urlcolor=black,citecolor=black,plainpages=false,pdfpagelabels]{hyperref}
%\usepackage{a4wide}
%\usepackage{lscape}
%\usepackage[numbers]{natbib}
%\usepackage{polynom,amssymb,amsmath}
%\usepackage{multirow}
\usepackage{fancyhdr,appendix,psfrag,layout}
%\usepackage{graphics,graphicx,subfigure,wrapfig}
\begin{document}
\frontmatter
\tableofcontents
\mainmatter
\chapter{introduction}
Text
....
\chapter{conclusion}
Text
\addappheadtotoc
\appendixpage
\appendixtitleon
\appendixtitletocon
\begin{appendices}
\chapter{title}
text
\chapter{title2}
text
\end{appendices}
\end{document}