I'm currently writing my thesis. Our university requires an Abstract in both German and English. Both of them are supposed to go onto the same page, but in front of the table of contents. As they do not belong to the main document, I would like them not numbered.
For my document, I chose »scrreprt« from koma-script and the Abstract will be on the chapter level. I found a solution to suppress the page break after the chapter and one solution to suppress numbering of the chapter while still adding it to the ToC, but I am not sure how to combine both.
Here is what I have so far:
Code: Select all
\documentclass[a4paper, 11pt, parskip=half, twoside, openright, pointlessnumbers, toc=bibliography, liststotoc, captions=tableheading]{scrreprt}
\usepackage[english]{babel}
% define chapter without pagebreak for abstract
\makeatletter
\newcommand\Abstractchap{%
\par\vspace{2cm}
\global\@topnum\z@
\@afterindentfalse
\secdef\@chapter\@schapter}
\makeatother
\begin{document}
\Abstractchap{Abstract}
\addcontentsline{toc}{chapter}{Abstract}
some text here
\Abstractchap{Zusammenfassung}
\addcontentsline{toc}{chapter}{Zusammenfassung}
some more text here
\tableofcontents % Table of Contents
\chapter{Introduction}
and some text right here
\end{document}
What I want is unnumbered chapters, only one unnumbered entry in ToC and the chapter Introduction numbered with 1. I tried adding stars to the chapter in the definition of Abstractchap, but I only get errors here (e.g. Argument of
\@schapter
has an extra }).I'm new to this forum and did not find how to include error messages. I hope my minimum working example is minimum
