forked from martinGithub/beamer2pptx
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample.tex
61 lines (36 loc) · 872 Bytes
/
example.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
\documentclass{beamer}
\usepackage[english]{babel}
\usepackage{graphicx}
\usepackage{wasysym}
\usepackage{amssymb}
\usepackage{bmpsize}
\newcommand{\Cells}{\mathcal{C}}
\newcommand{\Edges}{\mathcal{E}}
\newcommand{\Facets}{\mathcal{F}}
\newcommand{\Points}{\mathcal{P}}
\newcommand{\Vertices}{\mathcal{V}}
\title[]{Example of Beamer to Powerpoint conversion }
\author{ Anonymous author}
\institute{No institution }
\begin{document}
\begin{frame}[plain]
\titlepage
\end{frame}
\begin{frame}
\frametitle {First Slide}
this is an itemize example:
\begin{itemize}
\item first item
\item second item
\item third item
\end{itemize}
\end{frame}
\begin{frame}
\frametitle {Slide with images}
\includegraphics[width=0.45\linewidth]{image.pdf}
\end{frame}
\begin{frame}
\frametitle {Equations}
$$f(a,b)=\sum_i (ax_i-b)^2$$
\end{frame}
\end{document}