Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>First I would create one file that includes all chapters and appendixes etc. something called main.tex or thesis.tex</p> <p>there you can do all the includes and document settings, and also your header and footer settings: </p> <pre><code>% Free Header and Footer \usepackage{fancyhdr} \lfoot[\fancyplain{}{}]{\fancyplain{}{}} \rfoot[\fancyplain{}{}]{\fancyplain{}{}} \cfoot[\fancyplain{}{\footnotesize\thepage}]{\fancyplain{}{\footnotesize\thepage}} \lhead[\fancyplain{}{\footnotesize\nouppercase\leftmark}]{\fancyplain{}{}} \chead{} \rhead[\fancyplain{}{}]{\fancyplain{}{\footnotesize\nouppercase\sc\leftmark}} </code></pre> <p>here it would make the page number in the center of your page foot. and the chapter title on the left of your header and also on the right if your work is doubel paged.</p> <p>then you can start to include your other chapters.. mine looks like that (still in thesis.tex):</p> <pre><code>% --- Start of Document ---------------------------------------- \begin{document} \pagenumbering{roman} %roemische ziffern \pagestyle{fancy} % Initialize Header and Footer \include{title} % Title Page \include{affidavit} % affidavit \include{abstracts} % Englisch and German abstracts \include{acknowl} % Acknowledgements \include{glossary} % Glossary \include{abbreviation} % Abkuerzungen %\include{keywords} % Keywords \include{toc} % Table of Contents %--- Include your chapters here ---------- \setcounter{page}{1} % set page to 1 again to start arabic count \pagenumbering{arabic} %\include{chapter0} \include{chapter1} % Introduction \include{chapter2} % Background \include{chapter3} % Konzeption \include{chapter4} % Technische Umsetzung \include{chapter5} \include{chapter6} % %% .... \appendix \include{appendix} % Appendix A \end{document} </code></pre> <p>Hope that helps! headers and footers are some time difficult, and sometime if you change \documentclass it could appear different too. ;) </p>
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload