I'd like to have a page break between two images.
Image A should be on the first page.
Both images A and B should have one common caption which
should only be shown under the image B AND one subcaption (A and B).
What I've tried so far:
\documentclass[
pdftex,a4paper,11pt,oneside,fleqn,
bibliography=totoc,listof=totoc,
headlines=2.1,headsepline,
numbers=noenddot
]{scrreprt}
%%%----- Pakete ---------------------------------
\usepackage[a4paper,left=3.2cm,right=2.2cm,top=1.5cm,bottom=1.5cm,includeheadfoot]{geometry}
\usepackage[pdftex]{graphicx} % Grafiken einbinden
\usepackage{xcolor} % Farben ermöglichen
\usepackage{capt-of}
\usepackage{setspace}
\usepackage{subfig}
\renewcommand{\thesubfigure}{\thefigure.\arabic{subfigure}}
\captionsetup[subfigure]{labelformat=simple,labelsep=colon,
listofformat=subsimple}
\captionsetup{lofdepth=2}
\makeatletter
\renewcommand{\p@subfigure}{}
\makeatother
%%%----- Mathe ----------------------------------
\usepackage{amsmath,amsfonts,amssymb,bm}
\usepackage[squaren,textstyle]{SIunits}
\usepackage{icomma}
\usepackage{mathtools}
\usepackage[makeroom]{cancel}
\usepackage{trfsigns}
\usepackage{lipsum,graphicx,float}
\begin{document}
\lipsum[1-2]
\begin{figure}[H]
\centering
\subfloat[Ordnungsspektrum über der Zeit]{
\label{fig: Ordnungsspektrum_vs_time_ANC24}
\includegraphics{example-image-a}}
\qquad
\subfloat[Beschleunigungspegelverlauf der 24. Ordnung]{
\label{fig: Ordungsschnitt_24}%
\includegraphics{example-image-b}}%
\caption{Reduktion des Körperschalls in der 24. Ordnung bei einer konstanten Drehzahl von 300 rpm; Narrowband-FxLMS-Algorithmus inaktiv für $0 \leq t \leq 23 , \text{s}$ und aktiv für $23 , \text{s} < t \leq 45 , \text{s}$}
\end{figure}
\begin{figure}[H]
\centering
\includegraphics{example-image-c}
\caption{example image c}
\end{figure}
\listoffigures
\end{document}
The list of figures should still look like this:
1. Reduktion des Körperschalls in der 24. Ordnung bei einer konstanten Drehzahl
von 300 rpm; Narrowband-FxLMS-Algorithmus inaktiv f ̈ur 0 ≤ t ≤ 23 s und
aktiv f ̈ur 23 s < t ≤ 45 s
1.1 Ordnungsspektrum über der Zeit
1.2 Beschleunigungspegelverlauf der 24. Ordnung
2. example image c




