I am trying to top-aligned the right figure with the left text. But when I used option 'T', I found top room get much bigger in the right figure.
Here is my tex code:
\documentclass{beamer}
\usepackage[UTF8, 10pt]{ctex}
\usepackage{subcaption}
\begin{document}
\begin{frame}[t]\frametitle{Motivation}
\begin{columns}
\column{.5\textwidth}
卷积产生了三个重要的影响,
\begin{itemize}
\item a
\item b
\item c
\end{itemize}
稀疏交互的含义是:
\textcolor{red}{传统的全连接网络}每层的$m$个input和$n$个output之间都有连接,
\textcolor{red}{卷积网络}的input和output之间是稀疏连接,
\column{.5\textwidth}
\begin{figure}[t]
\centering
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=\linewidth]{example-image}
\caption{view from below}
\end{subfigure}
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=\linewidth]{example-image}
\caption{view from above}
\end{subfigure}
\caption{Caption here}
\label{fig:figure1}
\end{figure}
\end{columns}
\end{frame}
\end{document}
According to Problem with top alignment in beamer columns, after I have added the option 'T'
\documentclass{beamer}
\usepackage[UTF8, 10pt]{ctex}
\usepackage{subcaption}
\begin{document}
\begin{frame}[t]\frametitle{Motivation}
\begin{columns}[T] % new option
\column{.5\textwidth}
卷积产生了三个重要的影响,
\begin{itemize}
\item a
\item b
\item c
\end{itemize}
稀疏交互的含义是:
\textcolor{red}{传统的全连接网络}每层的$m$个input和$n$个output之间都有连接,
\textcolor{red}{卷积网络}的input和output之间是稀疏连接,
\column{.5\textwidth}
\begin{figure}[t]
\centering
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=\linewidth]{example-image}
\caption{view from below}
\end{subfigure}
\begin{subfigure}{.5\textwidth}
\centering
\includegraphics[width=\linewidth]{example-image}
\caption{view from above}
\end{subfigure}
\caption{Caption here}
\label{fig:figure1}
\end{figure}
\end{columns}
\end{frame}
\end{document}
The text seems top-aligned, but the figure ...
So any ideas that can align the figure with the text? And why the top room becomes bigger?



\documentclassand ending with\end{document}. – Bobyandbob Apr 05 '17 at 08:36columnsis wrong (i didn't find\end{column}). – Zarko Apr 05 '17 at 10:01\begin{column}, one with\column, the latter does not need\end{column}– samcarter_is_at_topanswers.xyz Apr 05 '17 at 13:33\begin{...} ... \end{...}. – Zarko Apr 05 '17 at 13:40