为两个子图定义主标题

为两个子图定义主标题
\subsection{frame 4}
\begin{frame}{Title}
\begin{columns}
\column{0.6\textwidth}
\begin{figure}
\includegraphics[scale=0.3]{image/A.png}
\caption{A}
\end{figure}
\column{0.3\textwidth}
\begin{figure}
\includegraphics[scale=0.3]{image/B.png}
\caption{B}
\end{figure}
\end{columns}
\caption{Main caption}
\end{frame}

在倒数第二行添加 \caption{Main caption} 会显示错误。有人能用其他方式定义主标题吗?

答案1

快速修复:\captionofcaption包中使用

\documentclass{beamer}

\usepackage{caption}

\begin{document}

\subsection{frame 4}
\begin{frame}{Title}
\begin{columns}
\column{0.6\textwidth}
\begin{figure}
\includegraphics[width=\textwidth]{example-image-duck}
\caption{A}
\end{figure}
\column{0.3\textwidth}
\begin{figure}
\includegraphics[width=\textwidth]{example-image-duck}
\caption{B}
\end{figure}
\end{columns}
\captionof{figure}{Main caption}
\end{frame}


\end{document}

在此处输入图片描述

清洁方式:查看subcaption包装

相关内容