我试图将右侧图形与左侧文本顶部对齐。但是当我使用选项“T”时,我发现右侧图形的顶部空间变得大得多。
这是我的 tex 代码:
\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}
根据投影机柱顶部对齐问题在我添加了选项“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}
文本似乎顶部对齐,但图形......
那么有什么办法可以让图片和文字对齐吗?为什么顶部的房间变大了?
答案1
额外的空间来自figure
环境。快速破解方法如下:
\documentclass{beamer}
\usepackage{subcaption}
\begin{document}
\begin{frame}[t]
\frametitle{Motivation}
\begin{columns}[T] % new option
\begin{column}{.5\textwidth}
text text text
\begin{itemize}
\item text text text(sparse interaction)
\item text text text(parameter sharing)
\item text text text(equivariant representation)
\end{itemize}
text text text:
\textcolor{red}{text text text}text text text$m$text text text$n$text text text,text text text$m \times n $text text text,text text text。
\textcolor{red}{text text text}text text text,text text text,text text text,text text text$k \times n, k \ll m$,text text text,text text text。
\end{column}
\begin{column}{.5\textwidth}
\vspace{-.9\baselineskip}
\begin{figure}
\begin{subfigure}[t]{.5\textwidth}
\includegraphics[width=\linewidth]{example-image}
\caption{view from below}
\end{subfigure}
\begin{subfigure}{.5\textwidth}
\includegraphics[width=\linewidth]{example-image}
\caption{view from above}
\end{subfigure}
\caption{Caption here}
\label{fig:figure1}
\end{figure}
\end{column}
\end{columns}
\end{frame}
\end{document}