-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
63 lines (52 loc) · 1.54 KB
/
Copy pathmain.tex
File metadata and controls
63 lines (52 loc) · 1.54 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
%%%
% Author: Yihong Liu (https://liu-yihong.github.io/)
% Repository:
% License: GNU GPL v3.0
% This repository contains an unofficial LaTex beamer template for the University of Texas at Dallas.
% Copyright (c) 2022 Yihong Liu
%%%
\documentclass[
xcolor={svgnames},
hyperref={pagebackref,bookmarks},
% aspectratio=169, % uncomment this line and comment the next line to change slide ratio from 4:3 to 16:9
aspectratio=43,
]{beamer}
\mode<presentation> % https://tex.stackexchange.com/questions/263440/what-are-the-available-modes-in-beamer
\input{includes/tex/packages-import.tex}
\input{includes/tex/colors-definition.tex}
\input{includes/tex/footline-definition.tex}
\input{includes/tex/presentation-info.tex}
\input{includes/tex/doc-metadata.tex}
\title{\presentationtitle}
\subtitle{\presentationsubtitle}
\author{\presenter}
\institute[UTD]{
\school\\
\university\\
{\color{DarkBlue} \faIcon{envelope-open-text} \email}\\
{\color{DarkBlue} \faIcon{globe} \personalwebsite}
}
\date{\today}
\input{includes/tex/logo.tex}
\begin{document}
\maketitle
\section{TOC}
\begin{frame}{Table of Contents}
\tableofcontents
\end{frame}
\section{Introduction}
\begin{frame}{Sample frame title}
In this slide, some important text will be
\alert{highlighted} because it's important.
Please, don't abuse it.
\begin{block}{Remark}
Sample text
\end{block}
\begin{alertblock}{Important theorem}
Sample text in red box
\end{alertblock}
\begin{examples}
Sample text in green box. The title of the block is ``Examples".
\end{examples}
\end{frame}
\end{document}