Page LayoutHow to make 'Appendix' appear in toc in Latex

Information and discussion about page layout specific issues (e.g. header and footer lines, page formats, page numbers).
Post Reply
nonplussed
Posts: 5
Joined: Wed Aug 07, 2013 6:53 am

How to make 'Appendix' appear in toc in Latex

Post by nonplussed »

Please help! How to make word 'Appendix' appear in the table of contents? Right now toc looks like this:
References .........92

A Participant Information........101

I would like it to be:

References............92
Appendix.......101
A Participant Information......101

Code: Select all

\documentclass[12pt,MCIS,doublespace]{autthesis}
\begin{document}
\input{includes/LitReview}
\input{includes/Method}
\input{includes/Analysis}
\input{includes/Discussion}
\input{includes/Conclusion}

\renewcommand\bibname{References}
\singlespacing
\bibliographystyle{apacite}
\bibliography{Bibliography}

\appendix
\renewcommand\chaptername{Appendix} 
\doublespacing
\input{includes/Appendix}
\end{document}       

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

Learn LaTeX easily with newest books:

The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis

The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more

LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis

Post Reply