Presentations and Postersside-by-side text and figure within an itemized list

Beamer, Powerdot and KOMA-Script presentations, Conference posters (a0poster, baposter, tikzposter)
Post Reply
asafw
Posts: 37
Joined: Sun Jun 10, 2012 12:33 pm

side-by-side text and figure within an itemized list

Post by asafw »

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
Attachments
beamer-minimal-example.tex
(593 Bytes) Downloaded 772 times

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org
LaTeX Beginner's Guide LaTeX Cookbook LaTeX TikZ graphics TikZによるLaTeXグラフィックス
User avatar
Stefan Kottwitz
Site Admin
Posts: 10290
Joined: Mon Mar 10, 2008 9:44 pm

side-by-side text and figure within an itemized list

Post by Stefan Kottwitz »

Hi Asaf,

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}
Stefan
LaTeX.org admin
Post Reply