Я пытаюсь сделать так, чтобы подписи двух подрисунков были сбоку от рисунков, а не под ними, чтобы сэкономить место и поместить их ближе друг к другу. Любая помощь будет высоко оценена! Заранее спасибо:)
\documentclass{scrreprt}
\usepackage{subfig}
\usepackage{graphicx}
\begin{document}
\begin{figure}[h!]
\centering
\subfloat[Top view]{%
\includegraphics[width=0.6\textwidth]{example-image-16x9}}
\\
\subfloat[Side view]{%
\includegraphics[width=0.6\textwidth]{example-image-16x9}}
\caption{This is the ``main'' caption}
\end{figure}
\end{document}