Theses, Books, Title pagesAppendix for Multi-file LaTeX projects

Classicthesis, Bachelor and Master thesis, PhD, Doctoral degree
Post Reply
cenk
Posts: 2
Joined: Thu Aug 09, 2018 9:59 am

Appendix for Multi-file LaTeX projects

Post by cenk »

Hi

I have a Problem in the Appendix section of my Thesis.

in Latex I have a main file which controls all the chapter and othher things. In that file I have a part for appnedix:

Code: Select all

\appendix   

\chapter*{Appendix}  
\thispagestyle{empty}       
\setcounter{chapter}{1}               
\setcounter{equation}{0}               
\addstarredchapter{Appendix}            

\newpage                                
\ihead{\normalfont Appendix}             

\minitoc  

\include{Appendix/appendix1}

the appendix1.tex is in another chaper that I try to add Appendix inside. In appendix1.tex I just write: \chapter{example Appendix}. And in the output pdf (in Appendix section) I see 2 pages. First page: the capital Appendix (completely free) and the second page: B example Appendix. Do you know, why it is starting form 2. page of the appendix chapter ?

link for a sample Output: dropbox.com/s/zomhpxxa91yrphh/appendix.pdf?dl=0

Thanks

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

Appendix for Multi-file LaTeX projects

Post by Stefan Kottwitz »

Hi cenk,

welcome to the forum!

Well, just remove the \chapter*{Appendix}. Your \include{..} but also the following \chapter commands always start a new page by themselves.

Stefan
LaTeX.org admin
Post Reply