I am on the process of writing up my dissertation.. everything sems to be okay but I need to change the format of the chapter heading. I want the following format:
Chapter 1
Introduction
the problem I am facing now is the format that I always get is:
1 Introduction
I don't want this format>> I want to replace it with the earlie
We will need more information. Are the chaperX.tex files in the same folder as your master file? If so, there should be no problem with \include{chapterX}. You will need one \include-command for each file, e.g.
I tries to use the first pages of the chapter where I designed a cover and abstract and acknowledgement pages and I tries to use the same code but I fails
by the way I save the files in D and inside I collected all the chapters in one folder titled dissertation files
As stated above, if the chapterfiles are in a different folder than your master file (the one starting with \documentclass), you have to specify that. Also, I think you should avoid having spaces in the names of folders or files, that is, you should use something like "dissertationfiles" instead of "dissertation files".
When using \include or \input only one file, the master file, should have a preamble, and \begin/\end{document}. The preamble is where you load packages, define new commands etc. i.e everything from \documentclass{} to \begin{document}.
What happens when you are using \include, is that LaTeX will first add a \clearpage command, and then read the contents from the file.
In the Project folder, you have a file called master.tex, which contains the preamble, and a series of \include in the document environment. For instance:
Included (chapter) files must not have a preamble. I suggest that you do some basic reading [1]. These things are very important if you plan to work with LaTeX for future projects.