Hi,
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
Presentations and Posters ⇒ side-by-side text and figure within an itemized list
side-by-side text and figure within an itemized list
- Attachments
-
- beamer-minimal-example.tex
- (593 Bytes) Downloaded 772 times
- Stefan Kottwitz
- Site Admin
- Posts: 10290
- Joined: Mon Mar 10, 2008 9:44 pm
side-by-side text and figure within an itemized list
Hi Asaf,
it would also work without a
Stefan
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}
LaTeX.org admin