Mam problem ze stopką – nie mogę znaleźć odpowiedzi.

  1. Jak ustawić odstęp między moim imieniem i nazwiskiem a przynależnością (na dole po lewej)?
  2. Jak zmienić kolor „Wprowadzenie i omówienie” (w środku), aby był taki sam jak reszta tekst w stopce?

tutaj wprowadź opis obrazu

Mam ten kod dla mojej stopki:

\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 

Komentarze

  • Dla 1 użyj \insertshortauthor~(\insertshortinstitute) ( note (~), aw przypadku 2 użyj ...center]{author in head/foot}% dla wszystkich trzech beamercolorbox zamiast tytuł i data.
  • Witamy w TeX.SX! Możesz zajrzeć do naszego przewodnika dla początkujących , aby dokładniej zapoznać się z naszym formatem.

Odpowiedź

  1. Jak już wspomniano w Formatowanie stopki – odstępy i kolor skrótu możesz wstawić spację za pomocą ~

  2. Aby ustawić kolor tytułu: \setbeamercolor{title in head/foot}{fg=structure.fg}

Pełne MWE:

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

tutaj wprowadź opis obrazu

Dodaj komentarz

Twój adres email nie zostanie opublikowany. Pola, których wypełnienie jest wymagane, są oznaczone symbolem *