I have put four images on slide and I display them one by one using the pause command. I want to display row-wise, but they are getting displayed vertically one by one.
Below is my code:
\begin{frame}
\begin{columns}[t]
\column{.5\textwidth}
\centering
\includegraphics[width=5cm,height=3.5cm]{pc5.jpg}\\
\pause%
&\includegraphics[width=5cm,height=3.5cm]{pc6.jpg}\\[-1.5mm]\pause%
\column{.5\textwidth}
\centering
\includegraphics[width=5cm,height=3.5cm]{pc8.jpg}\\
\pause%
&\includegraphics[width=5cm,height=3.5cm]{pc7.jpg}
\end{columns}
\end{frame}
I want to display images in following order: pc5,pc6,pc7,pc8 but my code displays it as pc5,pc7,pc6,pc8.