I have a problem.
I'm using Berlin theme for my thesis' presentation and I need to hide in the headline the sections I'm not on; I just want the present section to be showed on each frame.
Any suggestion?
Document Classes ⇒ beamer | Hide other Sections in "Berlin" Theme
-
- Posts: 21
- Joined: Mon Sep 08, 2008 7:13 pm
NEW: TikZ book now 40% off at Amazon.com for a short time.
- Stefan Kottwitz
- Site Admin
- Posts: 10323
- Joined: Mon Mar 10, 2008 9:44 pm
beamer | Hide other Sections in "Berlin" Theme
Hi m.carrara3,
welcome to the board!
You could redefine \insertnavigation, consider this as a workaround:
That's a modification of the code in beamerbasenavigation.sty.
Stefan
welcome to the board!
You could redefine \insertnavigation, consider this as a workaround:
Code: Select all
\makeatletter
\renewcommand*\insertnavigation[1]{%
\vbox{{%
\usebeamerfont{section in head/foot}\usebeamercolor[fg]{section in head/foot}%
\beamer@xpos=0\relax%
\beamer@ypos=1\relax%
\hskip.3cm\setbox\beamer@sectionbox=\hbox{\kern1sp}%
\ht\beamer@sectionbox=1.875ex%
\dp\beamer@sectionbox=0.75ex%
\insertsectionhead%
\box\beamer@sectionbox\hfil\hskip.3cm%
}}}
\makeatother
Stefan
LaTeX.org admin
-
- Posts: 21
- Joined: Mon Sep 08, 2008 7:13 pm
Re: beamer | Hide other Sections in "Berlin" Theme
Thank you so much!!! I've already tried it and it works out perfectly!!!!