diff --git a/.gitignore b/.gitignore index 945fb52..9f182ce 100644 --- a/.gitignore +++ b/.gitignore @@ -3,6 +3,8 @@ !*.bib !images !images/* +!parts +!parts/* !chapters !chapters/* !appendix diff --git a/Content.tex b/Content.tex index 794f959..2bd7cb1 100644 --- a/Content.tex +++ b/Content.tex @@ -1,4 +1,4 @@ %all the main content goes here \pagenumbering{arabic} -\input{chapters/ExampleChapter.tex} \ No newline at end of file +\input{parts/ExamplePart.tex} diff --git a/Style.tex b/Style.tex index e415da3..b6fd294 100644 --- a/Style.tex +++ b/Style.tex @@ -9,8 +9,7 @@ \pagestyle{fancy} \fancyhf{} -\lhead{\large\rightmark} -\chead{\textbf{Zusammenfassung \MODULE \\\vspace{2mm}}} -\rhead{\leftmark} +\chead{\textbf{Zusammenfassung \MODULE \\\vspace{1mm}}} +\lhead{\leftmark} \lfoot{\AUTHORCOMPACT~|~\DATE} \rfoot{\thepage} \ No newline at end of file diff --git a/chapters/ExamplePart/ExampleChapter.tex b/chapters/ExamplePart/ExampleChapter.tex new file mode 100644 index 0000000..82f3050 --- /dev/null +++ b/chapters/ExamplePart/ExampleChapter.tex @@ -0,0 +1,5 @@ +\chapter{Example Chapter} +Example Text using \acs{example} +\clearpage +\section{Example Section} +Example Page 2 \ No newline at end of file diff --git a/parts/ExamplePart.tex b/parts/ExamplePart.tex new file mode 100644 index 0000000..efc1090 --- /dev/null +++ b/parts/ExamplePart.tex @@ -0,0 +1,3 @@ +\part{Example Part} + +\input{chapters/ExamplePart/ExampleChapter.tex} \ No newline at end of file