
Lo usé \setbeamertemplate{footline}[frame number]
en mi plantilla de proyector pero destruye la línea de mi pie original.
Entonces, durante mi búsqueda encontré lo siguiente para agregar antes del archivo \begin{document}
. Es lo que quiero pero solo necesito tener eso alineado a la izquierda. Actualmente está en el medio. ¿Alguna ayuda sobre cómo solucionar esto?
\expandafter\def\expandafter\insertshorttitle\expandafter{% \insertshorttitle\hfill% \insertframenumber\,/\,\inserttotalframenumber}
Respuesta1
Puedes configurarlo footline
usando tres beamercolorbox
.
\begin{beamercolorbox}[wd=<width>,
ht=<height>,
dp=<depth>,
<right, left or center>,
rightskip=<space>,
leftskip =<space>
]{fg=<color name>,
bg=<color name>}
Los tres anchos deben sumar 1\paperwidth
.
\setbeamertemplate{footline}{%
\hbox{%
\begin{beamercolorbox}[wd=.40\paperwidth,ht=6ex,dp=2.5ex,
left,leftskip=2.5ex]{title in head/foot}%
\usebeamerfont{title in head/foot}\insertshorttitle{}\newline%
\insertshortauthor
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.20\paperwidth,ht=6ex,dp=2.5ex,
center]{title in head/foot}%
\usebeamerfont{date in head/foot}\insertframenumber{} / %
\inserttotalframenumber
\end{beamercolorbox}%
\begin{beamercolorbox}[wd=.40\paperwidth,ht=6ex,dp=2.5ex,
right,rightskip=2ex]{title in head/foot}%
\usebeamerfont{date in head/foot}\insertshortdate{}
\end{beamercolorbox}}%
}