Presentations and Posters ⇒ side-by-side text and figure within an itemized list
side-by-side text and figure within an itemized list
I was wondering if it's possible to have an itemized list, where a particular item includes a minipage environment for side-by-side text and figure.
I attached a minimal example..
Thank you!
Asaf
- Attachments
-
- beamer-minimal-example.tex
- (593 Bytes) Downloaded 797 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
- Stefan Kottwitz
- Site Admin
- Posts: 10358
- Joined: Mon Mar 10, 2008 9:44 pm
side-by-side text and figure within an itemized list
it would also work without a
minipage
. You could use a tabular
environment.Code: Select all
\documentclass[demo]{beamer}
\begin{document}
\begin{frame}
\begin{itemize}
\item First item
\item \begin{tabular}[t]{ll}
\includegraphics{image} & text
\end{tabular}
\item Third item
\end{itemize}
\end{frame}
\end{document}