Beamer for CGU
Author
Leslie Tianyuan Zhang
Last Updated
2 years ago
License
Creative Commons CC BY 4.0
Abstract
This LaTeX code file is intended for use by CGU students to present their work. Wish you the best of luck!
This LaTeX code file is intended for use by CGU students to present their work. Wish you the best of luck!
\documentclass[10pt]{beamer}
%% Created by Leslie T. Zhang
\usepackage[utf8]{inputenc}
\usepackage{xeCJK}
\usepackage{graphicx}
\usepackage {mathtools}
\usepackage{utopia} %font utopia imported
\usetheme{CambridgeUS}
% set colors
\definecolor{myNewColorA}{RGB}{139,0,0} % dark red
\definecolor{myNewColorB}{RGB}{139,0,0} % dark red
\definecolor{myNewColorC}{RGB}{139,0,0} % dark red
\setbeamercolor*{palette primary}{bg=myNewColorC}
\setbeamercolor*{palette secondary}{bg=myNewColorB, fg = white}
\setbeamercolor*{palette tertiary}{bg=myNewColorA, fg = white}
\setbeamercolor*{titlelike}{fg=myNewColorA}
\setbeamercolor*{title}{bg=myNewColorA, fg = white}
\setbeamercolor*{item}{fg=myNewColorA}
\setbeamercolor*{caption name}{fg=myNewColorA}
\usefonttheme{professionalfonts}
\usepackage{natbib}
\usepackage{hyperref}
%------------------------------------------------------------
\titlegraphic{\includegraphics[height=2cm]{logo.png}}
\setbeamerfont{title}{size=\large}
\setbeamerfont{subtitle}{size=\small}
\setbeamerfont{author}{size=\small}
\setbeamerfont{date}{size=\small}
\setbeamerfont{institute}{size=\small}
\title{Dissertation Defense}
\subtitle{ ``Dissertation Title is here”} %% Change project title here
\author{Author} %% Change author name here
\institute{Claremont Graduate University}
\date[\textcolor{white}{\today}] %% Change presentation date here
{\today}
%------------------------------------------------------------
%This block of commands puts the table of contents at the
%beginning of each section and highlights the current section:
%\AtBeginSection[]
%{
% \begin{frame}
% \frametitle{Contents}
% \tableofcontents[currentsection]
% \end{frame}
%}
%------------------------------------------------------------
\begin{document}
%The next statement creates the title page.
\frame{\titlepage}
\begin{frame}
\frametitle{Contents}
\tableofcontents
\end{frame}
%------------------------------------------------------------
\section{Introduction}
\begin{frame}{Introduction}
In this part I'll...
\end{frame}
\section{Literature Review}
\begin{frame}{Literature Review}
Literature Review
\end{frame}
\section{Research Questions}
\begin{frame}{Research Questions}
Research Questions
\end{frame}
\section{Empirical Analysis}
\begin{frame}{Empirical Analysis - Baseline Model}
Empirical Model
\end{frame}
\begin{frame}{Empirical Analysis - Data}
Data
\end{frame}
\section{Summary and Further Discussion}
\begin{frame}{Summary and Further Discussion}
Summary and Further Discussion
\end{frame}
\section*{Acknowledgement}
\begin{frame}
\textcolor{myNewColorA}{\Huge{\centerline{Thank you!}}}
\end{frame}
\end{document}