What I have is this following:
Code: Select all
\chapter*{preface}
\chapter*{summary}
\tableofcontents
\chapter{introduction}
\chapter{Literature}
Code: Select all
Preface (inline with word introduction, 2 horizontal spaces at begin)
Summary (inline with word introduction, 2 horizontal spaces at begin)
Table of contents
1 Introduction
2 Literature
Preface
Summary
Table of contents
1 Introduction
2 Literature.
I have no idea how to horizontal space these two
\chapter*
(mayby with -spacing)??Any suggestions?
Code: Select all
\documentclass[11pt, a4paper, twoside]{report}
\usepackage{graphicx} %Importing figures
\usepackage{qtree} %Importing tree structure
\usepackage{amsmath} %Importing equations
\usepackage{geometry} %Adjusting page margins
\usepackage{anysize} %Creating custom page margins
\usepackage{xcolor,adjustbox} %Creating colorbox,adjustbox
\usepackage{eso-pic} %Creating backgroundpicture
\usepackage{fancyhdr} %Creating customize Header
\marginsize {3.5 cm}{3.5 cm}{3 cm}{3 cm} %Margins {Left}{Right}{Top}{Bottom}
%----------------------------------------------------------------------------------------
% BACKGROUNDPICTURE ON THE COVERPAGE
%----------------------------------------------------------------------------------------
\graphicspath{{./Coverpage/CoverpageFig/}}
\newcommand\BackgroundPic{
\put(-3.7,3.0){
\parbox[b][\paperheight]{\paperwidth}{%
\vfill
\centering
\includegraphics[width=\paperwidth,height=\paperheight,
keepaspectratio]{cover.png}%
}}}
\begin{document}
%----------------------------------------------------------------------------------------
% COVERPAGE
%----------------------------------------------------------------------------------------
\AddToShipoutPicture*{\BackgroundPic}
\newgeometry{left=0cm, right=0cm, top=5.5cm,bottom=0cm}
\include{./coverpage/coverpage}
\restoregeometry
\newpage
\thispagestyle{empty}
\mbox{}
%----------------------------------------------------------------------------------------
% TITLEPAGE
%----------------------------------------------------------------------------------------
\newgeometry{left=1cm, right=1cm}
\include{./Titlepage/titlepage}
\restoregeometry
\newpage
\thispagestyle{empty}
\mbox{}
%----------------------------------------------------------------------------------------
% PREFACE
%----------------------------------------------------------------------------------------
\pagenumbering{roman}
\include{./Preface/preface}
\newpage
\thispagestyle{empty}
\mbox{}
%----------------------------------------------------------------------------------------
% SUMMARY
%----------------------------------------------------------------------------------------
\include{./Summary/summary}
\newpage
\thispagestyle{empty}
\mbox{}
%----------------------------------------------------------------------------------------
% TABLE OF CONTENT/LIST OF FIGURE/LIST OF TABLES
%----------------------------------------------------------------------------------------
\setcounter{tocdepth}{2}
\tableofcontents %Creates a table of content
\newpage
\thispagestyle{empty}
\mbox{}
\listoffigures %Creates a list of figures
\addcontentsline{toc}{chapter}{\listfigurename} %Add List of figures to TOC
\newpage
\thispagestyle{empty}
\mbox{}
\listoftables %Creates a list of tables
\addcontentsline{toc}{chapter}{\listtablename} %Add List of tables to TOC
\newpage
\thispagestyle{empty}
\mbox{}
\clearpage %Clear page, start renumb. page
%----------------------------------------------------------------------------------------
% INTRODUCTION
%----------------------------------------------------------------------------------------
\fancyhead{} % clear all header fields
\fancyhead[LE,RO]{\nouppercase {\leftmark}}
\pagestyle{fancy}
\pagenumbering{arabic}
\include{./Introduction/introduction}
\newpage
\thispagestyle{empty}
\mbox{}
%----------------------------------------------------------------------------------------
% LITERATURE
%----------------------------------------------------------------------------------------
\include{./literature/literature}
\newpage
\thispagestyle{empty}
\mbox{}
%----------------------------------------------------------------------------------------
% CONCLUSION
%----------------------------------------------------------------------------------------
\include{./Conclusion/conclusion}
%----------------------------------------------------------------------------------------
% APPENDIXES
%----------------------------------------------------------------------------------------
\include{./appendix/appendixA}
\include{./appendix/appendixB}
\end{document}