I'm writing a document using the scrbook class, and I'm having some strange behavior when combing floats with the \part macro.
For the following document:
\documentclass{scrbook}
\begin{document}
\part{A Part} % This line seems to be creating the problem. If you comment it out, you'll notice that the extra "." character disappears.
\chapter{A Chapter}
\section{A Section}
\begin{figure}
\centering
\textit{The contents of the figure go here.}
\caption{A Figure.}
\label{Test}
\end{figure}
\end{document}
I would expect the output to look something like this:
![Page with contents: "1 A Chapter [newline] 1.1 A Section [at bottom of page] The contents of the figure go here. [newline] Figure 1.1: A Figure.](../../images/9f5056d1b16b727d74379e60abe17be4.webp)
Instead, it looks like this:
![Page with contents: "1. A Chapter [newline] 1.1. A Section [at bottom of page] The contents of the figure go here. [newline] Figure 1.1.: A Figure.](../../images/95820a628869ae7531c873ff702bf83d.webp)
The difference is very subtle, but there is a period after the name of the figure and before the colon, which looks odd:

How can this period be removed?