子字幕定位在图片旁边

子字幕定位在图片旁边

我正在尝试将两个子图的标题放在图的侧面而不是下方,以便节省一些空间并使它们彼此更接近。任何帮助都非常感谢!提前致谢:)

\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}

在此处输入图片描述

相关内容