Document Classesbeamer problem

Information and discussion about specific document classes and how to create your own document classes.
Martin
Posts: 5
Joined: Fri Dec 05, 2008 1:33 am

beamer problem

Post by Martin »

Hello,

I am working whit the beamer documentclass, I am using the theme called warsaw. The problem is that the title doesn`t fit in the footline box. I would like to know if it is posible to write anything else there instead of the title?

Thank you very much!!!
i appreciate it!

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

Re: beamer problem

Post by localghost »

Use the optional argument for a short title.


Best regards
Thorsten¹
Martin
Posts: 5
Joined: Fri Dec 05, 2008 1:33 am

Re: beamer problem

Post by Martin »

Thanks you very much!
I'm sorry but i don't understand what you mean, can you explain it again, please?
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

beamer problem

Post by gmedina »

Hi,

what localghost suggested you was to use the optional argument of the \title command,as the following example shows:

Code: Select all

\documentclass{beamer}
\usetheme{Warsaw}

\title[A short form of the title]{A really really really really really really really really really really really really really really really really really really really really really really really really long title}
\author{The author}

\begin{document}

\begin{frame}
  Test
\end{frame}

\end{document} 
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Martin
Posts: 5
Joined: Fri Dec 05, 2008 1:33 am

Re: beamer problem

Post by Martin »

Ahhh, Ok! Very helpful, Thanks you two!
dfmalh
Posts: 19
Joined: Fri Jul 25, 2008 1:12 pm

beamer problem

Post by dfmalh »

Hallo,

I am also using Warsaw, and the outer theme "smoothbars".

Code: Select all

\useoutertheme[subsection=false]{smoothbars}
The problem I have is that the dots (presenting the pages of my subsections) run into each other... There is however large gaps between some sections, almost as if it is justifies or spaced evenly over the top.

My question is: 1. Is there a way to define the size of the gaps? or 2. To align the sections to the right so that the one subsection (dots) does not overlap the other sections dots.

Thanks,
Danie
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

beamer problem

Post by gmedina »

Hi,

please post a minimal working example showing the undesired bahaviour.
1,1,2,3,5,8,13,21,34,55,89,144,233,...
dfmalh
Posts: 19
Joined: Fri Jul 25, 2008 1:12 pm

beamer problem

Post by dfmalh »

Hi,

Sorry, I forgot about my "mwe". My file is very large, but I attached an image to show my problem.

Thanks for the quick reply.
Danie
useoutertheme.jpg
useoutertheme.jpg (32.17 KiB) Viewed 6932 times
dfmalh
Posts: 19
Joined: Fri Jul 25, 2008 1:12 pm

beamer problem

Post by dfmalh »

Hi,

So as you can see the space between "Introduction", "Project Aims". "Research Results", etc. are the same.

See how the one subsection's "dots" start to overlap the next one? I indicated it with an arrow.

Here is my code to define he settings:

Code: Select all

\useoutertheme[subsection=false]{smoothbars}
Is there additional settings to "fix" this problem? My presentation is next week. Any help is greatly appreciated.

Thanks,
Danie
User avatar
gmedina
Posts: 2313
Joined: Wed Jul 11, 2007 11:45 pm

beamer problem

Post by gmedina »

At the moment I don't know an easy fix for your problem and unfortunately I don't have enough time right now to write the necessary code. My suggestion would be to use the split outher theme:

Code: Select all

\useoutertheme{split}
instead of smooth bars (split does something similar to what you proposed as the second alternative to solve your problem).
1,1,2,3,5,8,13,21,34,55,89,144,233,...
Post Reply