diff options
| author | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-05-25 17:10:49 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano.tronto@gmail.com> | 2021-05-25 17:10:49 +0200 |
| commit | d6c61d988bfa4255baf9cdae42db59ebee38363f (patch) | |
| tree | 118ff3c2424e735149c145524965a4a337e50beb /src/Lecture3/live/beamer.tex | |
| parent | 46eef66b1e1571c77dc828d7e950b129b4c8bfd0 (diff) | |
| download | mathsoftware-d6c61d988bfa4255baf9cdae42db59ebee38363f.tar.gz mathsoftware-d6c61d988bfa4255baf9cdae42db59ebee38363f.zip | |
Added files
Diffstat (limited to 'src/Lecture3/live/beamer.tex')
| -rw-r--r-- | src/Lecture3/live/beamer.tex | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/src/Lecture3/live/beamer.tex b/src/Lecture3/live/beamer.tex new file mode 100644 index 0000000..fd9ddcf --- /dev/null +++ b/src/Lecture3/live/beamer.tex | |||
| @@ -0,0 +1,84 @@ | |||
| 1 | \documentclass[11pt]{beamer} | ||
| 2 | \usetheme{Madrid} | ||
| 3 | \usepackage[utf8]{inputenc} | ||
| 4 | \usepackage{amsmath} | ||
| 5 | \usepackage{amsfonts} | ||
| 6 | \usepackage{amssymb} | ||
| 7 | |||
| 8 | \author[Tronto]{Sebastiano Tronto} | ||
| 9 | \title[Example]{Example presentation} | ||
| 10 | |||
| 11 | \newtheorem{prop}{Proposition} | ||
| 12 | |||
| 13 | \setbeamercovered{transparent} | ||
| 14 | \setbeamertemplate{navigation symbols}{} | ||
| 15 | \logo{\includegraphics[scale=0.05]{unilu.jpg}} | ||
| 16 | |||
| 17 | %\date{} | ||
| 18 | |||
| 19 | |||
| 20 | \begin{document} | ||
| 21 | |||
| 22 | \begin{frame} | ||
| 23 | \titlepage | ||
| 24 | \end{frame} | ||
| 25 | |||
| 26 | %\begin{frame} | ||
| 27 | %\tableofcontents | ||
| 28 | %\end{frame} | ||
| 29 | |||
| 30 | \section[this]{This is the first section} | ||
| 31 | |||
| 32 | \begin{frame}{Frame number one} | ||
| 33 | \uncover<2->{ | ||
| 34 | \begin{align*} | ||
| 35 | \sum_{i=1}^n\frac{i}{2} | ||
| 36 | \end{align*} | ||
| 37 | } | ||
| 38 | |||
| 39 | \begin{itemize}[<+->] | ||
| 40 | \item One item | ||
| 41 | \item another random things | ||
| 42 | \item third line | ||
| 43 | \item fourth element | ||
| 44 | \end{itemize} | ||
| 45 | \end{frame} | ||
| 46 | |||
| 47 | \begin{frame}{A second frame} | ||
| 48 | \begin{theorem} | ||
| 49 | A theorem | ||
| 50 | \end{theorem} | ||
| 51 | |||
| 52 | { | ||
| 53 | |||
| 54 | \setbeamercolor{block body}{fg=red,bg=gray} | ||
| 55 | \begin{prop} | ||
| 56 | My proposition | ||
| 57 | \end{prop} | ||
| 58 | } | ||
| 59 | |||
| 60 | \begin{block}{Title of the block} | ||
| 61 | this is my custom block | ||
| 62 | \end{block} | ||
| 63 | |||
| 64 | \end{frame} | ||
| 65 | |||
| 66 | \begin{frame}{Columns} | ||
| 67 | \begin{columns} | ||
| 68 | \column{0.5\textwidth} | ||
| 69 | \begin{itemize}[<+->] | ||
| 70 | \item One item | ||
| 71 | \item another random things | ||
| 72 | \item third line | ||
| 73 | \item fourth element | ||
| 74 | \end{itemize} | ||
| 75 | |||
| 76 | \column{0.2\textwidth} | ||
| 77 | hello | ||
| 78 | |||
| 79 | \column{0.3\textwidth} | ||
| 80 | \includegraphics[scale=0.1]{unilu.jpg} | ||
| 81 | \end{columns} | ||
| 82 | \end{frame} | ||
| 83 | |||
| 84 | \end{document} \ No newline at end of file | ||
