\documentclass{beamer} % Define UW colors \usepackage{xcolor} \usepackage{tcolorbox} \usepackage{tikz} \usepackage{booktabs} \usepackage{amssymb} % for checkmark \usepackage{graphicx} % if you want to use image-based checkmarks \usepackage{colortbl} \usepackage{hyperref} \usepackage{cleveref} \usetikzlibrary{shapes, arrows.meta, positioning} \tcbuselibrary{skins} \definecolor{UWBrown}{HTML}{492f24} \definecolor{UWGold}{HTML}{ffcc00} % Define custom colors (optional) \definecolor{lightgreen}{HTML}{d6f5d6} \definecolor{lightred}{HTML}{f8d7da} \definecolor{lightyellow}{HTML}{fff3cd} \definecolor{darkgreen}{HTML}{006400} \definecolor{darkred}{HTML}{8B0000} \definecolor{middlegreen}{HTML}{463200} \definecolor{middlered}{HTML}{C16B6D} \definecolor{lightorange}{HTML}{FFD8A9} % Theme setup \usetheme{Madrid} \usecolortheme{default} \setbeamertemplate{enumerate items}[default] \setbeamercolor*{structure}{bg=white,fg=UWBrown} % Apply custom colors \setbeamercolor{palette primary}{bg=UWBrown, fg=UWGold} \setbeamercolor{palette secondary}{bg=UWGold, fg=UWBrown} \setbeamercolor{palette tertiary}{bg=UWBrown, fg=white} % Flip heading colors \setbeamercolor{frametitle}{bg=UWGold, fg=UWBrown} \setbeamercolor{title}{fg=UWBrown} % Flip footer colors \setbeamercolor{footline}{bg=UWGold, fg=UWBrown} % Double-height footer with logo \setbeamertemplate{footline}{ \leavevmode% \hbox{% \begin{beamercolorbox}[wd=\paperwidth,ht=8ex,dp=4ex,left]{footline}% \includegraphics[height=6ex]{UW_Logo}% \hspace{1em} \insertshorttitle \hfill \insertframenumber{} / \inserttotalframenumber \end{beamercolorbox}% }% \vskip0pt% } % Title info \title[Data Center Economic Forecasting]{Application of REMI to Data Center Forecasting} \author{Alexander Gebben} \date{June 27, 2026} \begin{document} \begin{frame}[plain] \begin{center} \textcolor{UWGold}{\huge\textbf{\inserttitle}}\\ \textcolor{black}{\large\insertauthor}, \textcolor{black}{\insertdate} \vspace{1em} \includegraphics[width=0.7\paperwidth]{CBEA_Logo_Large} %\textcolor{white}{\insertinstitute}\\ \end{center} \end{frame} \begin{frame}{Outline} \tableofcontents \end{frame} %%%%%%%%%%%%%%%%%%%%%%%%%%%%% \section{Introduction} \begin{frame}{Introduction} Welcome to the presentation! \begin{enumerate} \item one \item two \end{enumerate} \begin{itemize} \item one \item two \end{itemize} \end{frame} %%%%%%%%%%%%%%%%%%%%%%%%%% \section{Background} \begin{frame}{What are Data Centers?} \begin{columns} \begin{column}{0.5\textwidth} \begin{enumerate} \item Large Language Models \item Proff of work crypto currency mining \item Cloud storage \item Hosting services \item Virtual private networks \end{enumerate} \end{column} \begin{column}{0.5\textwidth} \begin{itemize} \item one \item two \end{itemize} \end{column} \end{columns} \end{frame} %%%%%%%%%%%%%%%%% \begin{frame}[plain]{Projected Energy Use} \only<1>{\includegraphics[width=\textwidth]{Plot.png}} \only<2>{\includegraphics[width=\textwidth]{Total.png}} \end{frame} %%%%%%%%%%%%%%%%% \begin{frame}[plain]{Nuclear Fuel Cycle Overview} \begin{center} \resizebox{\textwidth}{!}{ \begin{tikzpicture}[ node distance=2cm and 2cm, box/.style={rectangle, draw, minimum width=5cm, minimum height=2cm, align=center}, dual/.style={rectangle split, rectangle split parts=2, draw, minimum width=5cm, minimum height=2cm, align=center}, arrow/.style={-{Latex}, thick} ] % Nodes with overlays \onslide<1->{\node[box,fill={yellow!20}] (mining) {Uranium Mining};} \onslide<2->{\node[box,fill={yellow!20}, right=of mining] (enrichment) {Uranium Enrichment};} \onslide<3->{\node[dual,text width=2cm, right=of enrichment, rectangle split part fill={blue!20, red!20}] (output) {Electricity Production\nodepart{second}Heat Applications};} \onslide<4->{\node[box, below=of output,fill={teal!20}] (manufacturing) {Component Manufacturing};} \onslide<5->{\node[box, right=of output,fill={gray!20}] (waste) {Spent Nuclear Fuel};} % Arrows with overlays \onslide<2->{\draw[arrow] (mining) -- (enrichment);} \onslide<3->{\draw[arrow] (enrichment) -- (output);} \onslide<4->{\draw[arrow] (manufacturing) -- (output);} \onslide<5->{\draw[arrow] (output) -- (waste);} \end{tikzpicture} } \end{center} \end{frame} \end{document}