I created a new document for my thesis and defined it as an article. Now my supervisor told me i should use a report as a class. Now the TOC looks kinda messed up, the "0.1.1" f.e. How do i change it back to "1.1" f.e. In the article i used \section and \subscetion. Shall i use a different command?
The Bibliography/List of Tables/List of Figures were created using \bibliography and \listoffigures, while on the other hand, were created by myself. Now the the format of the heading are different, as seen in the pictures here https://ibb.co/cJmmgk8 and here https://ibb.co/ZYp1Gzn. The title for the Bibliography is my much bigger than the one for the list of symbols. How do i make it looking uniform?
As can be seen in the picture here https://ibb.co/P992rmr, the formatting of the "Tables of Figures" is much different than the one of "Symbolverzeichniss". How do i make it look the same?
This is my code:
Code: Select all
\documentclass[a4paper,11pt]{report}
\usepackage{amsthm}
\usepackage{mathptmx}
\usepackage{graphicx}
\usepackage[utf8]{inputenc}
\usepackage[british]{babel}
\usepackage[T1]{fontenc}
\usepackage{amsmath}
\usepackage{microtype}
\usepackage{makeidx}
\usepackage{graphicx}
\usepackage{fourier}
\usepackage{fancyhdr}
\usepackage{paralist}
\usepackage{color}
\usepackage{acronym}
\usepackage{hyperref}
\usepackage[nottoc]{tocbibind}
\usepackage{tocloft}
%% Citation
\usepackage{natbib}
\bibliographystyle{apalike} %%abbrv
\def\bibfont{\small}
\renewcommand\cftfigfont{\small}
%% Kopf/Fußzeile
\lhead{\slshape \leftmark}
\chead{}
\rhead{\slshape \rightmark}
\lfoot{}
\cfoot{\thepage}
\rfoot{}
\renewcommand{\headrulewidth}{0.3pt}
\renewcommand{\footrulewidth}{0pt}
%% Beginn des Dokuments
\begin{document}
\include{Fertig/Titelblatt}
\newpage
\tableofcontents
\newpage
\setcounter{page}{1}
\part{Kapitel I}
\section{Einleitung}
...
\subsection{Formel}
...
\subsubsection{Weitere Infos}
...
\subsection{Bilder}
...
\subsection{Text 2}
...
\newpage
\part{Mehr Infos}
\section{Hintergrund}
...
\subsection{Alter in Jahren}
....
\newpage
\part{Verzeichnisse}
\newpage
\include{Fertig/Abkürzung}
\newpage
\include{Fertig/Symbole}
\newpage
\listoffigures
\newpage
\listoftables
\newpage
\bibliography{Literatur/Literatur}
\newpage
\include{Fertig/Eid}
\end{document}