Document ClassesBeamer and minipages

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
peaches2165
Posts: 25
Joined: Wed Oct 22, 2008 5:03 pm

Beamer and minipages

Post by peaches2165 »

Hi,

I'm using

Code: Select all

\documentclass{beamer}
\usetheme{Copenhagen} 
and am trying to create a minipage with an itemized list on the left and an image on the right.

My trouble is the itemized list on the left is showing up half way down the page and I want it at the top inline with the top of the photo.. I am using

Code: Select all

\begin{frame}
\begin{minipage}[t]{0.47\textwidth} 
itemized stuff
\end{minipage}
\begin{minipage}[t]{0.47\textwidth} 
\includegraphics[width=2.0in}{filename}
\end{minipage}


Any suggestions would be most appreciated.

Thanks,

Nancy
Last edited by Stefan Kottwitz on Tue Oct 22, 2013 11:32 am, edited 1 time in total.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

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

localghost
Site Moderator
Posts: 9202
Joined: Fri Feb 02, 2007 12:06 pm

Beamer and minipages

Post by localghost »

The beamer class offers the columns environment for such use cases. Please refer to the user guide for detailed explanations. In case of further upcoming questions please provide a self-contained and minimal example.


Thorsten
Post Reply