-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.tex
118 lines (99 loc) · 3.41 KB
/
main.tex
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
%----------------------------------------------------------------------------------------
% PACKAGES AND THEMES
%----------------------------------------------------------------------------------------
\documentclass[aspectratio=169,xcolor=dvipsnames, 10pt]{beamer}
\usetheme{USCViterbi}
\usepackage{hyperref}
\usepackage{animate}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{dashbox}
\usepackage{minted}
\usepackage{subcaption}
\usepackage{graphicx} % Allows including images
\usepackage[export]{adjustbox} % Allow trimming images
\usepackage{tikz}
\usepackage{tikz-cd}
\usepackage{hf-tikz}
\usetikzlibrary{tikzmark, positioning, fit, shapes.geometric, matrix}
\usetikzlibrary{matrix}
\usetikzlibrary{shadows}
\usetikzlibrary{shapes.arrows}
\usepackage{biblatex}
\usepackage{media9}%
\usepackage[absolute,overlay]{textpos}
\usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables
\usepackage{multirow}
\usepackage{multicol}
\usepackage{colortbl}
\usepackage{array, tabularx}
\usepackage[most]{tcolorbox}
\usepackage{mathtools}
\usepackage{stmaryrd}
\usepackage{ulem}
\usepackage[thicklines]{cancel}
\renewcommand{\CancelColor}{\color{USCCardinal}}
\newcommand<>{\xxcancel}[1]{\alt#2{\xcancel{#1}\vphantom{#1}}{#1}}
\newcommand<>{\xboxed}[1]{\alt#2{\dboxed{#1}}{#1}}
\addbibresource{references.bib}
%----------------------------------------------------------------------------------------
% TITLE PAGE
%----------------------------------------------------------------------------------------
% The title
\title[short title]{long title goes here}
\subtitle{if you have subtitle it goes here}
\author {} % your name goes here
\institute[University of Southern California] % Your institution may be shorthand to save space
{
% Your institution for the title page
Department of xxx, Viterbi School of Engineering \\
University of Southern California
}
\date{\today} % Date, can be changed to a custom date
%----------------------------------------------------------------------------------------
% PRESENTATION SLIDES
%----------------------------------------------------------------------------------------
\begin{document}
\begin{frame}
% Print the title page as the first slide
\titlepage
\begin{center}
\small
Other information you would like to provide goes here like funding sources
\end{center}
\end{frame}
% if you do not want tableofcontents at beginning of subsections
% comment the following out
\AtBeginSubsection[]
{
\begin{frame}<beamer>{Table of Contents}
\tableofcontents[currentsection,currentsubsection,hideothersubsections,sectionstyle=show/shaded,subsectionstyle=show/shaded/hide]
\end{frame}
}
% if you do not want tableofcontents at beginning of sections
% comment the following out
\AtBeginSection[]
{
\begin{frame}<beamer>{Table of Contents}
\tableofcontents[currentsection,sectionstyle=show/shaded, subsectionstyle=hide]
\end{frame}
}
% if you do not want tableofcontents at beginning of the whole docs
% comment the following out
%\begin{frame}<beamer>{Table of Contents}
% \tableofcontents[sectionstyle=show,subsectionstyle=hide]
%\end{frame}
\include{Content}
\section*{Questions}
\begin{frame}[t]
\frametitle{Bibliography}
\printbibliography
\end{frame}
\section*{Questions}
\begin{frame}
\begin{center}
\Large
\textbf{Whatever you want to put in the last frames, like questions}
\end{center}
\end{frame}
\end{document}