¿Cómo deshabilitar el ToC del encabezado de un documento proyector y al mismo tiempo mantener sus marcadores?

¿Cómo deshabilitar el ToC del encabezado de un documento proyector y al mismo tiempo mantener sus marcadores?

Me gustaría eliminar la ToC porque podría ocupar demasiado espacio cuando el número de secciones sea demasiado grande. Sin embargo, todavía quiero usar \sectioncomandos porque me permiten navegar fácilmente por mi presentación mientras la preparo. ¿Hay alguna manera de eliminar la ToC pero no los marcadores de un documento proyector?

\documentclass[aspectratio=169, xcolor={x11names}]{beamer}

\usecolortheme{rose}
\useoutertheme[]{split}
\useinnertheme{inmargin}
\setbeamersize{sidebar width left=1cm, sidebar width right=1cm}
\setbeamersize{text margin left=0.5mm, text margin right=0.5mm}

\usepackage[square, nonamebreak, sort&compress, comma, numbers]{natbib}

\usepackage{blindtext}


\begin{document}

\section{Section 1}

\begin{frame}[allowframebreaks=0.9]{Sections in ToC}

\blindtext[3]

\end{frame}

\section{Section 2}

\begin{frame}[allowframebreaks=0.9]{Sections in ToC}

\blindtext[3]

\end{frame}


\section{Section 3}

\begin{frame}[allowframebreaks=0.9]{Sections in ToC}

\blindtext[3]

\end{frame}

\end{document}

Respuesta1

La navegación de titulares se introduce por el splittema que carga. Si no lo desea, no cargue este tema ni redefina la plantilla del título.

\documentclass[aspectratio=169, xcolor={x11names}]{beamer}

\usecolortheme{rose}
\useoutertheme[]{split}
\useinnertheme{inmargin}
\setbeamersize{sidebar width left=1cm, sidebar width right=1cm}
\setbeamersize{text margin left=0.5mm, text margin right=0.5mm}

\usepackage[square, nonamebreak, sort&compress, comma, numbers]{natbib}

\usepackage{blindtext}

\setbeamertemplate{headline}{}


\begin{document}

\section{Section 1}

\begin{frame}[allowframebreaks=0.9]{Sections in ToC}

\blindtext[3]

\end{frame}

\section{Section 2}

\begin{frame}[allowframebreaks=0.9]{Sections in ToC}

\blindtext[3]

\end{frame}


\section{Section 3}

\begin{frame}[allowframebreaks=0.9]{Sections in ToC}

\blindtext[3]

\end{frame}

\end{document}

ingrese la descripción de la imagen aquí

Respuesta2

La respuesta corta es

\setbeamertemplate{headline}{}

y puedes hacer lo mismo para la parte inferior:

\setbeamertemplate{footline}{}

No es necesario elegir un estilo general diferente. También puedes ajustar una sección en {... }con esos comandos dentro, para que el efecto sea temporal.

información relacionada