How to have a title with scrbook?
I have added usepackage{abstract} but receive the error environment abstract undefined.
I try to compile with LuaHBTeX 1.12.0 the following reduced example:
\documentclass[a4paper,10pt,notitlepage]{scrbook}
\usepackage{fontspec}
\usepackage[ngerman]{babel}
\usepackage{abstract}
\usepackage[colorlinks]{hyperref}
\title{01blog1 titel Mein erster Blog}
\author{AUF}
\date{}
\begin{document}
\maketitle
\begin{abstract}01blog1 abstract Ein Blog ohne Sinn auf Deutsch\end{abstract}
\section{01blog1 level1 Ein erster Abschnitt}
Ein Blog ohne Sinn und dem einzigen Zweck, zu testen, wie ein Blog in
ein PDF umgewandelt wird.
\end{document}
scrbookwhich is very different fromscrartcl. For instance, you should start with a\chapterbefore using\section. Just use\chapter{Abstract}after\frontmatterand before\mainmatter. – egreg Oct 12 '21 at 20:33