Tengo problemas con el pie de página; no pude encontrar la respuesta.

  1. ¿Cómo puedo hacer que el espacio entre mi nombre y mi afiliación (abajo a la izquierda)?
  2. ¿Cómo cambio el color de «Introducción y descripción general» (en el medio) para que sea del mismo color que el resto de el texto en el pie de página?

ingrese la descripción de la imagen aquí

Tengo este código para mi pie de página:

\usetheme{default} \usecolortheme{default} \usenavigationsymbolstemplate{} \defbeamertemplate*{footline}{infolines theme} { \leavevmode% \hbox{% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% \usebeamerfont{author in head/foot}\insertshortauthor(\insertshortinstitute) \end{beamercolorbox}% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% \usebeamerfont{title in head/foot}\insertshorttitle \end{beamercolorbox}% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}% \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em} \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} \end{beamercolorbox}}% \vskip0pt% } \input{tcilatex} \begin{document} \title[Introduction and Overview]{Econ 196, Financial Crises - Morals and Markets} \author[Eric Fischer]{Eric Fischer} \institute[UCSC]{} \date{March 31, 2015} \maketitle 

Comentarios

  • Para 1, use \insertshortauthor~(\insertshortinstitute) ( note (~) y para 2, use ...center]{author in head/foot}% para los tres beamercolorbox es en lugar de título y fecha.
  • ¡Bienvenido a TeX.SX! Puede echar un vistazo a nuestra guía de inicio para familiarizarse más con nuestro formato.

Responder

  1. Como ya se mencionó en Formato de pie de página: espaciado y color del título corto puede insertar un espacio con ~

  2. Para establecer el color del título: \setbeamercolor{title in head/foot}{fg=structure.fg}

MWE completo:

\documentclass{beamer} \usetheme{default} \usecolortheme{default} \usenavigationsymbolstemplate{} \defbeamertemplate*{footline}{infolines theme} { \leavevmode% \hbox{% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{author in head/foot}% \usebeamerfont{author in head/foot}\insertshortauthor~(\insertshortinstitute) \end{beamercolorbox}% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,center]{title in head/foot}% \usebeamerfont{title in head/foot}\insertshorttitle \end{beamercolorbox}% \begin{beamercolorbox}[wd=.333333\paperwidth,ht=2.25ex,dp=1ex,right]{date in head/foot}% \usebeamerfont{date in head/foot}\insertshortdate{}\hspace*{2em} \insertframenumber{} / \inserttotalframenumber\hspace*{2ex} \end{beamercolorbox}}% \vskip0pt% } \setbeamercolor{title in head/foot}{fg=structure.fg} \begin{document} \title[Introduction and Overview]{Econ 196, Financial Crises - Morals and Markets} \author[Eric Fischer]{Eric Fischer} \institute[UCSC]{} \date{March 31, 2015} \maketitle \end{document} 

ingrese la descripción de la imagen aquí

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *