Document Classesvfill in beamer columns

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
jazzgossen
Posts: 26
Joined: Mon Mar 09, 2009 3:19 pm

vfill in beamer columns

Post by jazzgossen »

I want to put some text at the bottom of a slide in a beamer presentation. I've tried various versions of \vfill, \vspace{\fill}, \vspace*{\fill}. None seems to work the way I'd expect.

Code: Select all

\documentclass{beamer}
\begin{document}

\frame 
{ 
  \frametitle{A title}
  
  \begin{columns}[t]
    \begin{column}{0.65\textwidth}
      \begin{itemize}
      \item An item.
      \end{itemize}
      \vfill
      Text at bottom.
   \end{column}
 \end{columns}
}

\end{document}
If I remove the column environments, some space is inserted at the \vfill, but the text is still not placed at the bottom. Inside the column environment (and I do want to use columns), no space at all is inserted by the fill commands.

How can I make sure that the text is placed at the bottom?

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

Post Reply