En la presentación de Beamer en una página, me gustaría eliminar el título. Preferiría dejar el fondo pero eliminar los nombres de las secciones y subsecciones. ¿Cómo es posible hacer esto?
\setbeamertemplate{headline}
{%
\begin{beamercolorbox}[colsep=1.5pt]{upper separation line head}
\end{beamercolorbox}
\begin{beamercolorbox}[ht=1.7ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{top}
\vskip2pt\insertsectionnavigationhorizontal{\paperwidth}{}{}
\end{beamercolorbox}%
\ifbeamer@theme@subsection%
\begin{beamercolorbox}[colsep=1.5pt]{middle separation line head}
\end{beamercolorbox}
\begin{beamercolorbox}[ht=1.7ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{bottom}
\usebeamerfont{subsection in head/foot}\insertsubsectionhead
\end{beamercolorbox}%
\fi%
\begin{beamercolorbox}[colsep=1.5pt]{lower separation line head}
\end{beamercolorbox}
} \mode <all>
Respuesta1
Si desea suprimir el título completo, puede redefinir localmente la headline
plantilla para que esté vacía:
\documentclass{beamer}
\usetheme{CambridgeUS}
\begin{document}
\begin{frame}
test frame
\end{frame}
\begingroup
\setbeamertemplate{headline}{}
\begin{frame}
test frame with empty headline
\end{frame}
\endgroup
\begin{frame}
test frame
\end{frame}
\end{document}
Si sólo desea suprimir la información de navegación de las secciones y subsecciones, es necesario trabajar más; debe redefinir la headline
plantilla tal como se define en el tema externo utilizado. Por ejemplo, usando la plantilla dada headline
se puede definir un comando, digamos \nosecinhead
, para suprimir las barras de navegación del título para algunos fotogramas; para usar este comando todo lo que tienes que hacer es decir
\begingroup
\nosecinhead
bienantes \begin{frame}
, y luego
\endgroup
biendespués \end{frame}
, como lo ilustra el siguiente ejemplo (supongo que los colores top
y bottom
se han definido en alguna parte; proporcioné algunosad hocsolo por ejemplo):
\documentclass[svgnames,x11names]{beamer}
\setbeamercolor{top}{fg=white,bg=red}
\setbeamercolor{bottom}{fg=white,bg=blue}
\setbeamercolor{lower separation line head}{bg=LightSteelBlue3}
\newcommand\nosecinhead{%
\setbeamertemplate{headline}
{%
\begin{beamercolorbox}[ht=1.7ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{top}
\vskip2pt\mbox{}
\end{beamercolorbox}%
\begin{beamercolorbox}[ht=1.7ex,dp=1.125ex,%
leftskip=.3cm,rightskip=.3cm plus1fil]{bottom}
\end{beamercolorbox}%
\begin{beamercolorbox}[colsep=1.5pt]{lower separation line head}
\end{beamercolorbox}
}%
}
\begin{document}
\section{test}
\begin{frame}
test frame
\end{frame}
\begingroup
\nosecinhead
\begin{frame}
test frame with modified headline
\end{frame}
\endgroup
\begin{frame}
test frame
\end{frame}
\end{document}
Respuesta2
\documentclass{beamer}
\title{How to use Beamer}
\subtitle{from novice to professional}
\author{Aggresive User}
\date{\today}
\institute{\TeX\ User Group}
\usetheme{AnnArbor}
\usepackage{graphicx}
\begin{document}
\begin{frame}
\titlepage
\end{frame}
\begin{frame}{Table of Contents}
\tableofcontents
\end{frame}
\bgroup
\usebackgroundtemplate{\includegraphics[width=\paperwidth]{example-grid-100x100pt.pdf}}
\begin{frame}[plain]
What is your next question \scalebox{10}{\bf ?}
\end{frame}
\egroup
\end{document}