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}

\section*{NoSec}? – Ulrike Fischer Feb 27 '20 at 16:38\section*. However, the question remains: how to disable the frame appearing among the bullets (see edit) – bmv Feb 27 '20 at 16:43\begingroup\makeatletter\let\beamer@writeslidentry\relax...\endgrouparound the frame. – Ulrike Fischer Feb 27 '20 at 17:09\makeatothershould probably also have been added after\relax. – Circumscribe May 08 '20 at 16:46\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