Solución:
Puedes redefinir footline
localmente para el marco del título; También modifiqué el framenumber
contador de modo que los marcos, incluida la línea de pie, comiencen desde uno:
documentclass{beamer}
useoutertheme{infolines}
setbeamertemplate{footline}{hspace*{.5cm}scriptsize{insertshorttitle
hspace*{50pt} hfillinsertframenumberhspace*{.5cm}}\
vspace{9pt}}
author{An Author}
title{The Title}
begin{document}
{
setbeamertemplate{footline}{}
begin{frame}
titlepage
end{frame}
}
addtocounter{framenumber}{-1}
begin{frame}
A frame with footline
end{frame}
end{document}
Aquí hay una solución a través del plain
opción de entorno de marco (esta solución funciona incluso con el ignorenonframetext
opción).
documentclass[ignorenonframetext]{beamer}
useoutertheme{infolines}
setbeamertemplate{footline}{hspace*{.5cm}scriptsize{insertshorttitle
hspace*{50pt} hfillinsertframenumberhspace*{.5cm}}\
vspace{9pt}}
author{An Author}
title{The Title}
begin{document}
begin{frame}[plain]
titlepage
end{frame}
begin{frame}
A frame with footline
end{frame}
end{document}
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)