-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtemplate.tex
More file actions
66 lines (52 loc) · 1.33 KB
/
template.tex
File metadata and controls
66 lines (52 loc) · 1.33 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
64
65
66
\documentclass[14pt,aspectratio=169]{beamer}
\usepackage{pgfpages}
\usepackage{fancyvrb}
\usepackage{tikz}
\usepackage{pgfplots}
\usepackage{booktabs}
\usetheme{auriga}
\usecolortheme{auriga}
% define some colors for a consistent theme across slides
\definecolor{red}{RGB}{181, 23, 0}
\definecolor{blue}{RGB}{0, 118, 186}
\definecolor{gray}{RGB}{146, 146, 146}
\title{Presentation Template}
\author{A Salt Fish}
\institute[shortinst]{Beijing University of Posts and Telecommunications}
\begin{document}
{
% rather than use the frame options [noframenumbering,plain], we make the
% color match, so that the indicated page numbers match PDF page numbers
\setbeamercolor{page number in head/foot}{fg=background canvas.bg}
\begin{frame}
\titlepage
\begin{figure}[b]
\begin{flushright}
\includegraphics[width=0.1\linewidth]{pic/logo.png}
\end{flushright}
\end{figure}
\end{frame}
\begin{frame}
\frametitle{Figure}
\begin{figure}
\includegraphics[scale=0.15]{pic/logo.png}
\end{figure}
\end{frame}
\begin{frame}
\frametitle{Table \& Equation}
\textbf{Table}
\begin{center}
\begin{tabular}{c c c}
\toprule
A &B &C\\
\midrule
1 &2 &3\\
\bottomrule
\end{tabular}
\end{center}
\textbf{Equation}
\begin{equation}
C_i=A_i+B_i
\end{equation}
\end{frame}
\end{document}