投影机的颜色

投影机的颜色

你能帮我改变投影仪的颜色吗?下周五我将为我的博士论文答辩,我们必须遵循我们大学对演讲格式的一些指导。所以,我使用\usetheme{Berlin},这是输出 在此处输入图片描述

但四周(顶部和底部)应为黑色,页面背景应为灰色,就像这样 在此处输入图片描述

你能帮我吗?还有,可以把名字放在标题前面吗?谢谢!!!

这是 MWE:

\documentclass{beamer}
\usepackage{graphicx}
\usepackage{lmodern}
\usepackage{multirow}
\usepackage{xcolor}
\usepackage{booktabs}
\usepackage{longtable}

\usepackage[portuges]{babel}
\usepackage[latin1,utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{verbatim}
\usepackage{natbib}
\usepackage{amssymb}
\usepackage[none]{hyphenat}
\usepackage{amsmath,amssymb,mathtools}
\usepackage{indentfirst}
\usetheme{Berlin}
\setbeamercolor{block body alerted}{bg=normal text.bg!90!black}

\title[Prova de Doutoramento em Economia | Coimbra, 15 de Abil de 2016]{\Large \bf Políticas Monetária e Orçamental e Ciclos Económicos nos Mercados Emergentes}

\author[Gilson Pina]{Gilson Manuel Gomes Pina}

\normalsize

\date{
{\begin{minipage}[c]{16cm}
\begin{flushleft}
\textbf{Orientadores:} \\ 
\small Professor Doutor Pedro Bação (FEUC)\\
\small Professor Doutor Ricardo M. Sousa (EEG/UM)
\end{flushleft}
 \end{minipage}}\\
\vspace*{0.5cm}
{Prova de Doutoramento em Economia}\\
{\small  Coimbra, 15 de Abril de 2016}
}

\AtBeginSubsection[]
{
  \begin{frame}<beamer>{Sum\'{a}rio}
    \tableofcontents[currentsection,currentsubsection]
  \end{frame}
}

\begin{document}

\begin{frame}
  exemple
\end{frame}
\end{document}

答案1

要更改 beamer 中的颜色,你可以使用

\definecolor{mycolor}{RGB}{206,202,177}
\setbeamercolor{background canvas}{bg=mycolor}
\setbeamercolor{section in head/foot}{fg=white, bg=black}
\setbeamercolor{subsection in head/foot}{fg=white, bg=black}

注意:我从您的图像中获取了 RGB 值,但请检查这些值是否正确,或者它们是否在转换过程中被更改。


但如果您确实需要与屏幕截图完全相同的布局,您要么编写自己的主题,要么使用空幻灯片图像作为背景图像来伪造它。

在此处输入图片描述

完整 MWE:

\documentclass{beamer}
\usepackage{graphicx}
\usepackage{lmodern}
\usepackage{multirow}
\usepackage{xcolor}
\usepackage{booktabs}
\usepackage{longtable}

\usepackage[portuges]{babel}
\usepackage[latin1,utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{verbatim}
\usepackage{natbib}
\usepackage{amssymb}
\usepackage[none]{hyphenat}
\usepackage{amsmath,amssymb,mathtools}
\usepackage{indentfirst}
\usetheme{Berlin}
\setbeamercolor{block body alerted}{bg=normal text.bg!90!black}

\definecolor{mycolor}{RGB}{206,202,177}
\setbeamercolor{background canvas}{bg=mycolor}
\setbeamercolor{section in head/foot}{fg=white, bg=black}
\setbeamercolor{subsection in head/foot}{fg=white, bg=black}

\title[Prova de Doutoramento em Economia | Coimbra, 15 de Abil de 2016]{\Large \bf Políticas Monetária e Orçamental e Ciclos Económicos nos Mercados Emergentes}

\author[Gilson Pina]{Gilson Manuel Gomes Pina}

\normalsize

\date{
{\begin{minipage}[c]{16cm}
\begin{flushleft}
\textbf{Orientadores:} \\ 
\small Professor Doutor Pedro Bação (FEUC)\\
\small Professor Doutor Ricardo M. Sousa (EEG/UM)
\end{flushleft}
 \end{minipage}}\\
\vspace*{0.5cm}
{Prova de Doutoramento em Economia}\\
{\small  Coimbra, 15 de Abril de 2016}
}

\AtBeginSubsection[]
{
  \begin{frame}<beamer>{Sum\'{a}rio}
    \tableofcontents[currentsection,currentsubsection]
  \end{frame}
}

\begin{document}

\begin{frame}
  example
\end{frame}
\end{document}

相关内容