Code: Select all
\listfiles
Code: Select all
\listfiles
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\documentclass{report}
\begin{document}
\tableofcontents
\chapter*{Test chapter one}
\addcontentsline{toc}{chapter}{Test chapter one}
\addtocontents{toc}{\addvspace{-10pt}}
\chapter*{Test chapter two}
\addcontentsline{toc}{chapter}{Test chapter two}
\addtocontents{toc}{\addvspace{-10pt}}
\chapter*{Test chapter three}
\addcontentsline{toc}{chapter}{Test chapter three}
\addtocontents{toc}{\addvspace{-10pt}}
\end{document}
Code: Select all
\documentclass{report}
\begin{document}
\begin{center}
\Large\textsc{Title of the thesis.....}\\
\normalsize
\vspace{1.4cm}
\textbf{Author \\ \vspace{0.3cm} ********}\\
\vspace{1cm}
\textbf{Supervisor \\ \vspace{0.3cm} Professor *******}\\
\vspace{1.6cm}
\normalsize
\textbf{\large{ABSTRACT}}
\addcontentsline{toc}{chapter}{Abstract}
\addtocontents{toc}{\addvspace{-10pt}}
\end{center}
In this thesis...........etc
\newpage
\pagenumbering{roman}
\setcounter{page}{7}
\tableofcontents
\addcontentsline{toc}{chapter}{Contents}
\addtocontents{toc}{\addvspace{-10pt}}
\newpage
\chapter*{Test chapter one}
\addcontentsline{toc}{chapter}{Test chapter one}
\addtocontents{toc}{\addvspace{-10pt}}
\chapter*{Test chapter two}
\addcontentsline{toc}{chapter}{Test chapter two}
\addtocontents{toc}{\addvspace{-10pt}}
\chapter*{Test chapter three}
\addcontentsline{toc}{chapter}{Test chapter three}
\addtocontents{toc}{\addvspace{-10pt}}
\end{document}
Code: Select all
\addcontentsline{toc}{chapter}{Abstract}
\addtocontents{toc}{\addvspace{10pt}}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis