Document ClassesFoot line alignment in Beamer theme split

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
fliptomato
Posts: 12
Joined: Tue Jun 24, 2008 3:19 am

Foot line alignment in Beamer theme split

Post by fliptomato »

Hello everyone. I'm trying to use the beamer theme "split" for my presentation. I'm having trouble setting the `author' field to be left-aligned rather than right aligned. Is there a straightforward way to do this?

Thanks,
F

Recommended reading 2024:

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

NEW: TikZ book now 40% off at Amazon.com for a short time.

User avatar
Stefan Kottwitz
Site Admin
Posts: 10324
Joined: Mon Mar 10, 2008 9:44 pm

Foot line alignment in Beamer theme split

Post by Stefan Kottwitz »

Hi,

the right alignment is defined in the split theme footline template. Here's a way how to modify it:

Code: Select all

\defbeamertemplate*{footline}{my footline}
{%
  \leavevmode%
  \hbox{\begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fill]{author in head/foot}%
    \usebeamerfont{author in head/foot}\insertshortauthor
  \end{beamercolorbox}%
  \begin{beamercolorbox}[wd=.5\paperwidth,ht=2.5ex,dp=1.125ex,leftskip=.3cm,rightskip=.3cm plus1fil]{title in head/foot}%
    \usebeamerfont{title in head/foot}\insertshorttitle
  \end{beamercolorbox}}%
  \vskip0pt%
}
\usebeamertemplate{my footline}
Stefan
LaTeX.org admin
Post Reply