General ⇒ Ordering graphics down page instead of across
Ordering graphics down page instead of across
I'm wondering if anyone can help...
I'm using beamer to produce a presentation and have a slide with two columns.
I want the column on the left to contain 3 pictures underneath each other, with bullet points in the column on the right.
The only way I could manage this was to use bullet points for my pictures (and not display the actual bullet point). But the problem is that it appears to leave more empty space at the top of the column and very little at the bottom. So the pictures look out of place and just wrong! I've tried changing the size of the picture but no luck. So is there another command to put the pictures one above the other???? Does \begin{center} only center from left to right and not vertically?
Thanks!
NEW: TikZ book now 40% off at Amazon.com for a short time.
And: Currently, Packt sells ebooks for $4.99 each if you buy 5 of their over 1000 ebooks. If you choose only a single one, $9.99. How about combining 3 LaTeX books with Python, gnuplot, mathplotlib, Matlab, ChatGPT or other AI books? Epub and PDF. Bundle (3 books, add more for higher discount): https://packt.link/MDH5p
Ordering graphics down page instead of across
This worked for me, using pdfLaTeX:Laura wrote:Hi,
I'm wondering if anyone can help...
I'm using beamer to produce a presentation and have a slide with two columns.
I want the column on the left to contain 3 pictures underneath each other, with bullet points in the column on the right.
The only way I could manage this was to use bullet points for my pictures (and not display the actual bullet point). But the problem is that it appears to leave more empty space at the top of the column and very little at the bottom. So the pictures look out of place and just wrong! I've tried changing the size of the picture but no luck. So is there another command to put the pictures one above the other???? Does \begin{center} only center from left to right and not vertically?
Thanks!
Code: Select all
\documentclass{beamer}
...
\usepackage{graphicx}
...
\begin{document}
\begin{frame}
\frametitle{Some Title}
\begin{columns}
\column{0.5\textwidth}
\centering
\includegraphics[width=0.7\textwidth]{someimg} % someimg was in this dir and a png
\includegraphics[width=0.7\textwidth]{someimg} % someimg was in this dir and a png
\includegraphics[width=0.7\textwidth]{someimg} % someimg was in this dir and a png
\column{0.5\textwidth}
\begin{itemize}
\item Item 1
\item Item 2
\item Item 3
\end{itemize}
\end{columns}
\end{frame}
...
\end{document}