-
Notifications
You must be signed in to change notification settings - Fork 0
/
project_hw.tex
40 lines (36 loc) · 1.03 KB
/
project_hw.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
% To create a slide, use the following:
% \begin{frame}{TITLE}
% BODY
% \end{frame}
% To create a slide with a bullet list, use the following:
% \begin{frame}{TITLE}
% \begin{itemize}
% \item ITEM 1
% \item ITEM 2
% \end{itemize}
% \end{frame}
% To create a slide with numbered list, use the following:
% \begin{frame}{TITLE}
% \begin{enumerate}
% \item ITEM 1
% \item ITEM 2
% \end{enumerate}
% \end{frame}
% To create a slide with a graphic:
% 1. Add the graphic to this folder (named picture.png)
% 2. Use the following:
% \begin{frame}{TITLE}
% \centering
% \includegraphics[height=0.7\textheight,width=0.7\textwidth,keepaspectratio]{picture.png}
% \end{frame}
% To create a slide with two columns, use the following:
% \begin{frame}{TITLE}
% \begin{columns}
% \begin{column}{0.5\textwidth}
% COLUMN 1 BODY
% \end{column}
% \begin{column}{0.5\textwidth}
% COLUMN 2 BODY
% \end{column}
% \end{columns}
% \end{frame}