How to Remove Footers of LaTeX Beamer Templates?

前端 未结 2 457
梦毁少年i
梦毁少年i 2020-12-24 12:08

I am using the \"beamerthemesplit\" template of the Beamer LaTeX package. This templates includes the author\'s name and the title of the presentation in the footer of all p

2条回答
  •  情话喂你
    2020-12-24 12:38

    I do not have the most direct answer for you as I do not use the beamerthemesplit template. But for a recent presentation, I was tempted to decompose the themese a little. So if you use this

    \mode
    {
      \useoutertheme{default}   % empty
    %  \useoutertheme{infolines}% simple but bland
    %  \useoutertheme{split}    % ok if compress option used
    %  \useoutertheme{shadow}   % way too much space used -- ok with option 'compress'
      %\useoutertheme{shadow}   
      %\setbeamercovered{transparent} % or whatever (possibly just delete it)
      %\useoutertheme[subsection=false]{miniframes}
    }
    

    you get via default a really empty setup. Adding infolines gives you a footer with three parts, you can study the code of that outer theme to just add parts. Likewiese with color themses -- I just experimented a little and eventually went back to a default theme.

提交回复
热议问题