
UMass Boston Beamer Template
作者:
Jacob Adamczyk
最近上传:
3 年前
许可:
Creative Commons CC BY 4.0
摘要:
A basic template to make a beamer presentation for UMass Boston.

\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\begin
Discover why over 20 million people worldwide trust Overleaf with their work.
\documentclass[10pt]{beamer}
\usepackage[utf8]{inputenc}
\usepackage{multirow,rotating}
\usepackage{color}
\usepackage{hyperref}
\usepackage{tikz-cd}
\usepackage{array}
\usepackage{siunitx}
\usepackage{mathtools,nccmath}%
\usepackage{etoolbox, xparse}
\usetheme{CambridgeUS}
\usecolortheme{dolphin}
% set colors
\definecolor{blue}{HTML}{005a8b}
\definecolor{brightblue}{HTML}{a0cfeb}
\definecolor{brighterblue}{HTML}{0157ad}
\definecolor{darkblue}{HTML}{003c66}
\definecolor{textcolor}{HTML}{000222}
\definecolor{warmgrey}{HTML}{988f86} % {130,138,143}
\setbeamercolor*{palette primary}{bg=darkblue}
\setbeamercolor*{palette secondary}{bg=blue, fg = white}
\setbeamercolor*{palette tertiary}{bg=warmgrey, fg = white}
\setbeamercolor*{titlelike}{fg=blue}
\setbeamercolor*{title}{bg=textcolor, fg = white}
\setbeamercolor*{item}{fg=textcolor}
\setbeamercolor*{caption name}{fg=warmgrey}
\usefonttheme{professionalfonts}
\usepackage{natbib}
\usepackage{hyperref}
%------------------------------------------------------------
% \titlegraphic{\includegraphics[height=0.75cm]{logo.png}}
% logo of my university
\titlegraphic{%
\includegraphics[width=3.0cm]{umb_assets/Blue logo lockup with TM.png}
}
\setbeamerfont{title}{size=\large}
\setbeamerfont{subtitle}{size=\small}
\setbeamerfont{author}{size=\small}
\setbeamerfont{date}{size=\footnotesize}
\setbeamerfont{institute}{size=\footnotesize}
\title[Shorter Title on Each Slide]{Put your title here}%title
%\subtitle{ }%%subtitle
\author[Robert Beacon]{Robert Beacon\inst{1} and Leigh Thouse\inst{1}}%%authors
\institute[UMB]{University of Massachusetts, Boston\inst{1}}
\date[\textcolor{white}{Conference Name, \today}]
{Conference full name\\
\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}
%}
\AtBeginSection[]{
\begin{frame}
\vfill
\centering
\begin{beamercolorbox}[sep=8pt,center,shadow=true,rounded=true]{title}
\usebeamerfont{title}\insertsectionhead\par%
\end{beamercolorbox}
\vfill
\end{frame}
}
% ------Contents below------
%------------------------------------------------------------
\begin{document}
%The next statement creates the title page.
\frame{\titlepage}
\begin{frame}
\frametitle{Outline}
\tableofcontents
\end{frame}
% consider removing it if it's too redundant
\AtBeginSection[]
{
\begin{frame}
\frametitle{Table of Contents}
\tableofcontents[currentsection]
\end{frame}
}
%------------------------------------------------------------
\section{Introduction}
\begin{frame}{Introduction}
\end{frame}
\section{Conclusion}
\begin{frame}{Conclusion}
\end{frame}
\section*{Acknowledgement}
\begin{frame}
\textcolor{textcolor}{\huge{\centerline{Thank you!}}}
\vspace*{0.5cm}
\textcolor{textcolor}{\Large{\centerline{E-mail: UMBID@umb.edu}}}
\end{frame}
\end{document}