Hi Stefan,
thanks for your help. I tried to do a minimal example. If it needs to be altered, tell me.
So the problem is that I don´t get the Abstract and those kind of italic heading of the sections that I dont wanna have. I hope you understand my problem. Thanks a lot!
Code: Select all
\documentclass[a4paper,12pt]{scrartcl}
\usepackage[nottoc]{tocbibind}
\usepackage[backend=biber,
style=authoryear-icomp,
sorting=nyt,
url=true,
natbib=true,
hyperref=true,
]{biblatex}
\DeclareLanguageMapping{english}{american-apa}
\bibliography{Terrorism_Bibliography.bib}
\usepackage{tocstyle}
\newtocstyle[KOMAlike][leaders]{chapterwithdot}{
\settocfeature{pagenumberbox}{\makebox[1em][r]}
\settocfeature[-1]{leaders}{\hfill}
\settocfeature[-1]{pagenumberbox}{\phantom}
}
\usetocstyle{chapterwithdot}
\usepackage[automark,autooneside]{scrlayer-scrpage}
\clearpairofpagestyles
\ohead{\headmark}
\ofoot*{\pagemark}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage[T1]{fontenc}
\usepackage{blindtext}
\usepackage{hyperref}
\usepackage{setspace}
\setlength{\parindent}{0mm}
\usepackage[paper=a4paper,left=30mm,right=30mm,top=30mm,bottom=30mm]{geometry}
\usepackage{graphicx}
\deffootnote{1em}{1em}{\textsuperscript{\thefootnotemark\ }}
\setcounter{tocdepth}{3}
\setcounter{secnumdepth}{3}
\begin{document}
\begin{titlepage}
\begin{small}
\raggedleft {xxx}\\
\end{small}
\begin{center}
\begin{Large}
\vfill {title} \\ \bigskip
\end{Large}
\textit{title2}
\end{center}
\end{titlepage}
\pagenumbering{roman}
\clearpage
\tableofcontents
\clearpage
\fbox{\parbox{\linewidth}{\begin{abstract}{\textbf{Abstract}}
\\
Abstract xxx}}\\\\
\end{abstract}
\clearpage
\section{Introduction}
introduction
\section{analysis}
analysis
\clearpage
\addcontentsline{toc}{section}{List of References}
\printbibliography[title={Book references},type=book]
\printbibliography[title={Article references},type=article]
\printbibliography[title={Webpage references}, nottype=article, nottype=book]
\end{document}