Beamer,帕洛阿尔托

Beamer,帕洛阿尔托

晚上好!我不是 Beamer 专家,而且我对 PaloAlto 有疑问:

  1. 如果可能的话,我想在右上角放一个标志;
  2. 我想要“栏标题”没有颜色而是蓝色;
  3. 在侧边栏中,文字的颜色为白色。

这里是代码:

\documentclass[13pt]{beamer}
\usepackage [italian] {babel}
\usepackage [utf8] {inputenc}
\usepackage [T1] {fontenc}
\usetheme[width=1.5cm]{PaloAlto}          %controls the width of the sidebar
\setbeamercolor{frametitle}{bg=red, fg=white}     %controls the color of the headline
\setbeamercolor{sidebar}{bg=red, fg=white}        %controls the color of the sidebar
\setbeamercolor{logo}{bg=red!70!black}

\makeatletter

\beamer@headheight=2\baselineskip     %controls the height of the headline, default is 2.5  

\makeatother

\begin{document}
\title[]{TITLE}
\author[]{NAME}
\date{DATE}
\titlegraphic{\includegraphics[scale=0.15]{Fig/Cattura.JPG}}
\section{Quadro generale}
\section{Assunzioni}
\section{Test}
\section{Incoerenze}
\section{Critiche}
\section{Proposte}
\begin{frame}
\maketitle
\end{frame}

\end{document}

非常感谢您的回答:)

答案1

  1. 如果可能的话,我想在右上角放一个标志;>
\logo{\includegraphics[width=1cm]{example-image}}
  1. 我想要“栏标题”没有颜色而是蓝色;
\setbeamercolor{title}{bg=white,fg=black}
  1. 在侧边栏中,文字的颜色为白色。
\setbeamercolor{section in sidebar shaded}{fg=white}

相关内容