LaTeX 演示文稿中的框架中断未对齐

LaTeX 演示文稿中的框架中断未对齐

我怎样才能将框架分成多个部分?当我使用allowbreakframes命令时,它会隐藏我的文本并仅显示图形。请帮帮我。

梅威瑟:

\begin{document} 

\subsection{Decimation} 

\begin{frame} 

\frametitle{Decimation}
\pause 
Decimation is achieved first by passing a signal from anti aliasing filter. 
\begin{figure}[hbtp] 
  \includegraphics[scale=0.5]{../../Desktop/figures/Mutlirate 1.jpg} 
  \caption{Down-Sampling} 
\end{figure}
\pause 
%\end{equation} 

\begin{figure}[hbtp] 
  \includegraphics[scale=0.25]{../../Desktop/figures/Mutlirate 2.jpg} 
  \caption{Sinousoidal Signal} 
\end{figure} 

\begin{figure}[hbtp] 
  \includegraphics[scale=0.25]{../../Desktop/figures/Mutlirate 3.jpg} 
  \caption{Down-sampling of Sine wave} 
\end{figure} 

\end{frame}

\end{document}

答案1

所以你基本上想将幻灯片分成两部分,分别显示数字和文本?在这种情况下,我会使用列:

\begin{columns}[c]
    \column{.5\textwidth}
       Left Column
    \column{.5\textwidth}
       Right Column
\end{columns}

相关内容