フットラインに問題があります-答えが見つかりませんでした。

  1. 自分の名前と所属(左下)の間にスペースを空けるにはどうすればよいですか?
  2. 「紹介と概要」(中央)の色を他の部分と同じ色に変更するにはどうすればよいですか?フットラインのテキスト?

ここに画像の説明を入力してください

フットラインに次のコードがあります:

\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 

コメント

  • 1の場合は、\insertshortauthor~(\insertshortinstitute)(注(~)および2の場合は、3つすべてのbeamercolorboxの代わりに...center]{author in head/foot}%を使用しますタイトルと日付。
  • TeX.SXへようこそ。スターターガイドをご覧になり、フォーマットについてさらに詳しく知ることができます。

回答

  1. すでに述べたようにフットラインの書式設定-ショーツの間隔と色 ~

  2. タイトルの色を設定するには:\setbeamercolor{title in head/foot}{fg=structure.fg}

フル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} 

ここに画像の説明を入力

コメントを残す

メールアドレスが公開されることはありません。 * が付いている欄は必須項目です