2

I would like to disable a specific section or a frame from appearing among the navigation bullets in the headline. How could it be done?

I am aware of this Q&A https://tex.stackexchange.com/a/45038/81639, but I am reported an Option clash for package beamerouterthememiniframes

\documentclass{beamer}
\usetheme{Berlin}

\begin{document}
    \section{Sec1}
    \begin{frame}
        Fr1
    \end{frame}
    \begin{frame}
        Fr2
    \end{frame}
\section{Sec2}
    \begin{frame}
        Fr3
    \end{frame}
\begin{frame}
    This frame should not appear among the navigation bullets
\end{frame}
\end{document}

enter image description here

bmv
  • 3,588
  • why don't you use the obvious idea to simply remove the \section*{NoSec}? – Ulrike Fischer Feb 27 '20 at 16:38
  • You are right, I removed \section*. However, the question remains: how to disable the frame appearing among the bullets (see edit) – bmv Feb 27 '20 at 16:43
  • 2
    You could probably add \begingroup\makeatletter\let\beamer@writeslidentry\relax ... \endgroup around the frame. – Ulrike Fischer Feb 27 '20 at 17:09
  • 2
    @UlrikeFischer Thank you, this solves the question. If you make it an answer, I'd be happy to accept it – bmv Feb 27 '20 at 17:13
  • The verbatim and aeb-comment packages support a comment environment. – John Kormylo Feb 28 '20 at 02:33
  • 4
    I’m voting to close this question because it was solved in the comments – BambOo May 08 '20 at 15:44
  • 2
    It is perhaps good to note that the the solution proposed in this comment does still leave an empty spot where a navigation bullet would otherwise be placed, which may not be desirable. \makeatother should probably also have been added after \relax. – Circumscribe May 08 '20 at 16:46
  • Exactly why this question is considered off-topic? – bmv May 09 '20 at 11:18
  • 2
    People sometimes vote to close questions that were answered in the comments as 'off-topic'. (In the old days questions that were only due to small typos were often 'answered' in the comments and then closed as 'too localized'. That close reason does not exist any more, so people sometimes select 'off-topic' as replacement.) In case the answer in the comments is more than just a typo or a simple misunderstanding I find that closing as 'off-topic' isn't quite the right thing to do. That seems to be the case here. Voted to reopen. – moewe May 09 '20 at 11:45
  • @UlrikeFischer Do you want to type up an answer here in case the question is reopened. – moewe May 09 '20 at 11:46
  • Replace the \useoutertheme[subsection=false]{miniframes} in the linked duplicate with your \usetheme{Berlin} to avoid the option clash – samcarter_is_at_topanswers.xyz Sep 21 '22 at 11:25

0 Answers0