Jai des problèmes avec la ligne de pied de page – je nai pas pu trouver la réponse.

  1. Comment puis-je faire de lespace entre mon nom et mon affiliation (en bas à gauche)?
  2. Comment changer la couleur de « Introduction et vue densemble » (au milieu) pour quelle soit de la même couleur que le reste de le texte dans le bas de page?

entrez la description de limage ici

Jai ce code pour ma bas de page:

\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 

Commentaires

  • Pour 1, utilisez \insertshortauthor~(\insertshortinstitute) ( note (~) et pour 2, utilisez ...center]{author in head/foot}% pour les trois beamercolorbox es au lieu de titre et date.
  • Bienvenue dans TeX.SX! Vous pouvez consulter notre guide de démarrage pour vous familiariser davantage avec notre format.

Réponse

  1. Comme déjà mentionné dans Formatage de la ligne de bas de page – espacement et couleur du titre abrégé , vous pouvez insérer un espace avec ~

  2. Pour définir la couleur du titre: \setbeamercolor{title in head/foot}{fg=structure.fg}

MWE complet:

\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} 

entrez la description de limage ici

Laisser un commentaire

Votre adresse e-mail ne sera pas publiée. Les champs obligatoires sont indiqués avec *