I am using scrbook via kaobook and I would like to make a document that contains a single chapter, unnumbered and unnamed. This probably means I shouldn't be using scrbook to begin with, but I'd like to make a document that is in the same style as another that will have multiple chapters, numbered and named.
\documentclass{scrbook}
\usepackage{mwe}
\begin{document}
\mainmatter
\section{Introduction}
We will be brief.
\section{Details}
\begin{figure}
\centering
\includegraphics[width=0.5\columnwidth]{example-image}
\caption{
A figure caption
}
\label{fig-1}
\end{figure}
There is no information in Figure~\ref{fig-1}.
\end{document}
produces
and I would basically like to remove the 0. from all references and headings. So the MWE would produce a figure numbered 1, not 0.1.
I'm hoping there's a straightforward way to get this done. This document will never have more than one chapter in it, so I would not mind a solution that would e.g. produce two figures called 1 if they are the first figure in two different chapters. If I can literally supress the 0. prefix of the labels, that would be enough.
I noticed \chapappifchapterprefix mentioned in kaobook.cls, but I believe that refers to e.g. "Chapter" (related to Custom chapter prefix text in KOMA-Script)
Related but different question: How to use unnumbered chapters with KOMA-script?


– Gus May 30 '21 at 17:09https://tex.stackexchange.com/questions/82606/remove-chapter-number-on-algorithm-numbers-scrbook
https://tex.stackexchange.com/questions/87777/in-a-chapter-how-do-i-remove-chapter-numbers-from-figures-and-add-the-title-to