GeneralRemove navigation bullets from beamer theme

LaTeX specific issues not fitting into one of the other forums of this category.
Post Reply
tehingo
Posts: 6
Joined: Tue Oct 28, 2008 1:51 pm

Remove navigation bullets from beamer theme

Post by tehingo »

The navigation bullets that are displayed for some beamer themes by default are very neat for short presentations. For my long talk, however, they look out of place and there are just overwhelmingly many. Here is is a screenshot:
beamer-bullets.png
beamer-bullets.png (30.5 KiB) Viewed 18680 times
I would like to get rid of them and place a slide-number somewhere on the page. How is that possible?

Minimal example:

Code: Select all

\documentclass[compress, final]{beamer}
    \usetheme[height=0mm]{Rochester}
    \usecolortheme{dolphin}
    \useinnertheme{rectangles}
    \useoutertheme[footline=empty, subsection=true]{miniframes}

\begin{document}

\begin{frame}{Test frame}
    \begin{block}<+->{Block}
        Beamer is cool
    \end{block}
\end{frame}

\end{document}
Last edited by localghost on Tue May 03, 2011 9:30 pm, edited 1 time in total.

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

Remove navigation bullets from beamer theme

Post by localghost »

Please kindly inform us if you do a crossposting [1]. This is just fair and prevents others from double efforts and waste of time.

[1] {TeX} SE — Is it possible to get rid of the bullets in \useouterheme{miniframes}


Thorsten
tehingo
Posts: 6
Joined: Tue Oct 28, 2008 1:51 pm

Re: Remove navigation bullets from beamer theme

Post by tehingo »

Sorry, I should have known that the LaTeX community is small. The reason I did that is because I need an answer urgently, or otherwise work-around the problem in an ugly fashion (which would also not mean the end of the world for me).

In case of an answer I will make sure it will be posted to both website, it's not my nature to leave orphaned threads.
tehingo
Posts: 6
Joined: Tue Oct 28, 2008 1:51 pm

Remove navigation bullets from beamer theme

Post by tehingo »

I got a nice answer from Stefan on SE:

Code: Select all

\setbeamertemplate{headline}
{%
  \begin{beamercolorbox}[ht=3.5ex,dp=1.125ex,%
      leftskip=.3cm,rightskip=.3cm plus1fil]{section in head/foot}
    \usebeamerfont{section in head/foot}\usebeamercolor[fg]{section in head/foot}%
    \insertsectionhead
  \end{beamercolorbox}%
  \begin{beamercolorbox}[colsep=1.5pt]{middle separation line head}
  \end{beamercolorbox}
  \begin{beamercolorbox}[ht=2.5ex,dp=1.125ex,%
    leftskip=.3cm,rightskip=.3cm plus1fil]{subsection in head/foot}
    \usebeamerfont{subsection in head/foot}\insertsubsectionhead
  \end{beamercolorbox}%
  \begin{beamercolorbox}[colsep=1.5pt]{lower separation line head}
  \end{beamercolorbox}
}
The only thing missing now are the sections in the top, with the current one being highlighted. Is that also possible to do?
Post Reply