├── .gitignore ├── LICENSE.md ├── README.md ├── figures.pdf ├── presentation.pdf ├── presentation.sty └── presentation.tex /.gitignore: -------------------------------------------------------------------------------- 1 | # LaTeX build artifacts 2 | *.aux 3 | *.bbl 4 | *.blg 5 | *.brf 6 | *.fdb_latexmk 7 | *.fls 8 | *.log 9 | *.out 10 | *.synctex.gz 11 | *.toc 12 | *.lof 13 | *.lot 14 | *.nav 15 | *.snm 16 | 17 | 18 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2022–present Pascal Michaillat 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Minimalist LaTeX Template for Academic Presentations 2 | 3 | This repository contains a [LaTeX](https://github.com/latex3/latex2e) template to create an academic presentation. The template uses the [Beamer class](https://github.com/josephwright/beamer). The template follows typographical best practices and has a minimalist design. The template is particularly well suited for research presentations. It is designed to convey scientific arguments and results effectively. 4 | 5 | ## Documentation 6 | 7 | The template is documented at https://pascalmichaillat.org/c/. 8 | 9 | ## Illustration 10 | 11 | The presentation produced by the template can be viewed at https://pascalmichaillat.org/c.pdf. 12 | 13 | ## Usage 14 | 15 | + Clone the repository to your local machine. 16 | + Start editing the LaTeX file `presentation.tex` to replace the boilerplate content with the content of your presentation. 17 | + Replace the figures in the PDF file `figures.pdf` with the figures that will be included in the presentation (one figure per page). 18 | + Compile `presentation.tex` with pdfTeX. This will generate a new PDF file named `presentation.pdf`. 19 | + The LaTeX style file `presentation.sty` formats the presentation. It must be included in the same folder as `presentation.tex`. It can be modified to alter the presentation's format. 20 | + The file `presentation.pdf` is not required to use the template. It only illustrates the output of the template. It will be overwritten when `presentation.tex` is compiled. 21 | 22 | ## Software 23 | 24 | + The template was developed with TeX Live 2023 on macOS. 25 | + Other LaTeX distributions and operating systems may require minor adjustments. Please [report any issues](https://github.com/pmichaillat/latex-math/issues) to help improve compatibility. 26 | 27 | ## License 28 | 29 | This repository is licensed under the [MIT License](LICENSE.md). 30 | 31 | ## Real-world implementations 32 | 33 | + [Beveridgean Phillips Curve](https://pascalmichaillat.org/15p.pdf) 34 | + [Modeling Migration-Induced Unemployment](https://pascalmichaillat.org/14p.pdf) 35 | + [u* = √uv: The Full-Employment Rate of Unemployment in the United States](https://pascalmichaillat.org/13p.pdf) 36 | + [An Economical Business-Cycle Model](https://pascalmichaillat.org/7p.pdf) 37 | + [Beveridgean Unemployment Gap](https://pascalmichaillat.org/9p.pdf) 38 | + [Pricing under Fairness Concerns](https://pascalmichaillat.org/8p.pdf) 39 | + [Resolving New Keynesian Anomalies with Wealth in the Utility Function](https://pascalmichaillat.org/11p.pdf) 40 | 41 | ## Related resources 42 | 43 | + [latex-paper](https://github.com/pmichaillat/latex-paper) - This LaTeX template produces academic papers following the same typographic principles and with a similar appearance as this presentation template. 44 | + [latex-math](https://github.com/pmichaillat/latex-math) - These LaTeX commands simplify writing mathematical expressions. They can be used in combination with this presentation template. -------------------------------------------------------------------------------- /figures.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmichaillat/latex-presentation/c02872d8e8a13b158e270054cfbc1738200bad60/figures.pdf -------------------------------------------------------------------------------- /presentation.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pmichaillat/latex-presentation/c02872d8e8a13b158e270054cfbc1738200bad60/presentation.pdf -------------------------------------------------------------------------------- /presentation.sty: -------------------------------------------------------------------------------- 1 | % ---- Select text fonts ----- 2 | 3 | % Apply sophisticated fonts 4 | \usefonttheme{professionalfonts} 5 | 6 | % Select text font 7 | \usepackage{sourcesanspro} 8 | 9 | % Define semibold font series 10 | \DeclareRobustCommand{\sbseries}{\fontseries{sb}\selectfont} 11 | \DeclareTextFontCommand{\textsb}{\sbseries} 12 | 13 | % Select monospaced font 14 | \usepackage{sourcecodepro} 15 | 16 | % Select font encoding 17 | \usepackage[T1]{fontenc} 18 | 19 | % Select URL font 20 | \usepackage{url} 21 | 22 | % ---- Select math fonts ----- 23 | 24 | % Select symbol font 25 | \usepackage{MnSymbol} 26 | 27 | % Select calligraphic and blackboard-bold fonts 28 | \usepackage[cal=euler,bb=fourier]{mathalpha} 29 | 30 | % Enable bold math characters 31 | \newcommand{\hmmax}{0} % Avoid "Too many math alphabets" error 32 | \newcommand{\bmmax}{0} % Avoid "Too many math alphabets" error 33 | \usepackage{bm} 34 | 35 | % Select font for Roman letters, Greek letters, digits, and punctuation 36 | \usepackage[italic,eulergreek,nolessnomore,noparenthesis,noplusnominus,noequal,nohbar]{mathastext} 37 | 38 | % Correct spacing around certain Roman letters 39 | \MTsetmathskips{y}{2mu}{0mu} 40 | \MTsetmathskips{j}{2mu}{0mu} 41 | 42 | % ---- Select Beamer theme ---- 43 | 44 | % Select theme 45 | \usetheme{Boadilla} 46 | 47 | % Select color theme 48 | \usecolortheme[]{seagull} 49 | 50 | % Make covered elements transparent 51 | \setbeamercovered{transparent} 52 | 53 | % Remove navigation symbols 54 | \setbeamertemplate{navigation symbols}{} 55 | 56 | % ---- Adjust slide layout ---- 57 | 58 | % Set layout on title page 59 | \setbeamertemplate{title page}[default][left,leftskip=-8pt] 60 | 61 | % Set margins on regular pages 62 | \setbeamersize{text margin left=5mm,text margin right=5mm} 63 | 64 | % ---- Adjust spacing ---- 65 | 66 | % Set spacing between lines 67 | \usepackage[onehalfspacing]{setspace} 68 | 69 | % Set spacing on lines 70 | \usepackage{microtype} 71 | 72 | % Remove ligatures 73 | \DisableLigatures[f]{encoding = *, family = * } 74 | 75 | % ---- Adjust font sizes and shapes ---- 76 | 77 | % Set title font 78 | \setbeamerfont{title}{size=\huge, series=\scshape} 79 | 80 | % Set author font 81 | \setbeamerfont{author}{size=\large} 82 | 83 | % Set frame title font 84 | \setbeamerfont{frametitle}{series=\scshape} 85 | 86 | % Ensure uniform capitalization of frame title, and lower title 87 | \setbeamertemplate{frametitle}{\vskip3mm\MakeLowercase{\insertframetitle}} 88 | 89 | % Format continuation count for multipage slides 90 | \setbeamertemplate{frametitle continuation}{[\insertcontinuationcount]} 91 | 92 | % Set list font 93 | \setbeamerfont{itemize/enumerate subbody}{size=\normalsize} % Second level 94 | \setbeamerfont{itemize/enumerate subsubbody}{size=\normalsize} % Third level 95 | 96 | % Set theorem fonts 97 | \setbeamerfont{block title}{series=\sbseries,size=\normalsize} % Title 98 | 99 | % Set button font 100 | \setbeamerfont{button}{size=\footnotesize} 101 | 102 | % ---- Adjust colors ---- 103 | 104 | % Define colors 105 | \colorlet{BlackGray}{black!85!} 106 | \colorlet{DarkGray}{gray!60!} 107 | \colorlet{LightGray}{gray!30!} 108 | 109 | % Set title color 110 | \setbeamercolor{title}{fg=BlackGray} 111 | 112 | % Set frame title color 113 | \setbeamercolor{frametitle}{fg=BlackGray} 114 | 115 | % Set text color 116 | \setbeamercolor{normal text}{fg=BlackGray} 117 | 118 | % Set list items color 119 | \setbeamercolor{itemize item}{fg=DarkGray} % Itemized list, first level 120 | \setbeamercolor{itemize subitem}{fg=DarkGray} % Itemized list, second level 121 | \setbeamercolor{itemize subsubitem}{fg=DarkGray} % Itemized list, third level 122 | \setbeamercolor{enumerate item}{fg=DarkGray} % Numbered list, first level 123 | \setbeamercolor{enumerate subitem}{fg=DarkGray} % Numbered list, second level 124 | \setbeamercolor{enumerate subsubitem}{fg=DarkGray} % Numbered list, third level 125 | 126 | % Set theorem colors 127 | \setbeamercolor{block title}{fg=BlackGray,bg=LightGray} % Title 128 | \setbeamercolor{block body}{fg=BlackGray,bg=LightGray} % Body 129 | 130 | % Set footer color 131 | \setbeamercolor{footline}{fg=DarkGray} 132 | 133 | % Set button colors 134 | \setbeamercolor{button}{fg=DarkGray, bg=white} 135 | 136 | % ---- Format title slide ---- 137 | 138 | % Title capitalization and underline 139 | \let\oldtitle\title 140 | \renewcommand{\title}[1]{\oldtitle[]{\MakeLowercase{#1}\vspace{-5mm}\\\color{BlackGray}{\rule{\textwidth}{2pt}}\vspace{1cm}}} 141 | 142 | % Define custom commands with complex argument specifications 143 | \usepackage{xparse} 144 | 145 | % Paper information 146 | \NewDocumentCommand{\information}{o g g}{% 147 | \author[]{#2% 148 | \IfValueT{#3}{\vspace{5mm}\\#3}% 149 | \IfValueT{#1}{\vspace{5mm}\\\color{DarkGray}{\footnotesize Available at \url{#1}}}% 150 | }\date[]{}} 151 | 152 | % ---- Format lists ---- 153 | 154 | % Format itemized lists 155 | \setbeamertemplate{itemize item}{\textbullet} % First-level item 156 | \setbeamertemplate{itemize subitem}{\textendash} % Second-level item 157 | \setbeamertemplate{itemize subsubitem}{\textsquare} % Third-level item 158 | 159 | % Format numbered lists 160 | \setbeamertemplate{enumerate item}[default] % First-level item 161 | \setbeamertemplate{enumerate subitem}{\alph{enumii}.} % Second-level item 162 | \setbeamertemplate{enumerate subsubitem}{\roman{enumiii}.} % Third-level item 163 | 164 | % ---- Create text alerts ---- 165 | 166 | % Standard alert 167 | \NewDocumentCommand{\al}{o g}{% 168 | \IfNoValueTF{#1}{\textcolor{RubineRed}{#2}}% 169 | {\textcolor<#1>{RubineRed}{#2}}} 170 | 171 | % Green, positive alert 172 | \NewDocumentCommand{\alg}{o g}{% 173 | \IfNoValueTF{#1}{\textcolor{Green}{#2}}% 174 | {\textcolor<#1>{Green}{#2}}} 175 | 176 | % Red, negative alert 177 | \NewDocumentCommand{\alr}{o g}{% 178 | \IfNoValueTF{#1}{\textcolor{Red}{#2}}% 179 | {\textcolor<#1>{Red}{#2}}} 180 | 181 | % Blue, zero alert 182 | \NewDocumentCommand{\alb}{o g}{% 183 | \IfNoValueTF{#1}{\textcolor{NavyBlue}{#2}}% 184 | {\textcolor<#1>{NavyBlue}{#2}}} 185 | 186 | % ---- Format figures and tables ---- 187 | 188 | % Enhance table formatting 189 | \usepackage{booktabs} 190 | 191 | % Enable multiple rows in table 192 | \usepackage{multirow} 193 | 194 | % Customize captions 195 | \usepackage{caption} 196 | 197 | % Format captions 198 | \captionsetup{labelformat=empty,size=normalsize} 199 | 200 | % Center figures 201 | \let\oldincludegraphics\includegraphics 202 | \renewcommand{\includegraphics}[2][]{\centering\oldincludegraphics[#1]{#2}} 203 | 204 | % ---- Format theorems ---- 205 | 206 | \setbeamertemplate{blocks}[rounded][shadow=false] 207 | 208 | % Define new theorems 209 | \newtheorem{proposition}{Proposition} 210 | \newtheorem{assumption}{Assumption} 211 | \newtheorem{remark}{Remark} 212 | 213 | % ---- Create section slide ---- 214 | 215 | \newcommand{\heading}[1]{\LARGE\scshape\color{BlackGray}\singlespacing\MakeLowercase{#1}} 216 | 217 | % ---- Create last slide ---- 218 | 219 | \newcommand{\lastslide}{{\setbeamercolor{normal text}{bg=LightGray}\begin{frame}\end{frame}}} 220 | 221 | % ---- Define shortcuts for pictograms ---- 222 | 223 | \newcommand{\up}{\textuparrow\,} 224 | \newcommand{\down}{\textdownarrow\,} 225 | \renewcommand{\flat}{\textrightarrow\,} 226 | \newcommand{\then}{$\rightsquigarrow\,$} 227 | \newcommand{\so}{{$\Rightarrow\,$}} 228 | 229 | % ---- Remove or insert slide numbers ---- 230 | 231 | % Remove slide numbers by default 232 | \setbeamertemplate{footline}{} 233 | 234 | % Uncomment the line below to insert slide numbers 235 | % \setbeamertemplate{footline}[frame number] -------------------------------------------------------------------------------- /presentation.tex: -------------------------------------------------------------------------------- 1 | \documentclass[11pt,xcolor={dvipsnames},hyperref={pdftex,pdfpagemode=UseNone,hidelinks,pdfdisplaydoctitle=true},usepdftitle=false]{beamer} 2 | \usepackage{presentation} 3 | 4 | % Enter presentation title to populate PDF metadata: 5 | \hypersetup{pdftitle={Minimalist LaTeX Template for Academic Presentations}} 6 | 7 | % Enter path to PDF file with figures: 8 | \newcommand{\pdf}{figures.pdf} 9 | 10 | \begin{document} 11 | 12 | % Enter title: 13 | \title{Research Presentation} 14 | 15 | \information 16 | % 17 | % Enter URL to research paper (can be commented out): 18 | [https://github.com/pmichaillat/latex-presentation] 19 | % 20 | % Enter authors: 21 | {First Author, Second Author} 22 | % 23 | % Enter location and date (can be commented out): 24 | {Location -- Date} 25 | 26 | \frame{\titlepage} 27 | 28 | % Enter content of presentation: 29 | \begin{frame} 30 | \frametitle{Generic slide} 31 | \begin{itemize} 32 | \item Consectetur adipiscing elit 33 | \item Sed do eiusmod tempor incididunt 34 | \item Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat 35 | \item Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur 36 | \item Ut labore et dolore magna aliqua 37 | \end{itemize} 38 | \end{frame} 39 | 40 | \begin{frame} 41 | \frametitle{Slide with a very, very long title and various font shapes: Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat} 42 | \begin{itemize} 43 | \item Text in italic: \textit{consectetur adipiscing elit, ut labore et dolore magna aliqua, quis nostrud exercitation ullamco laboris Quis nostrud exercitation ullamco laboris} 44 | \item Text in bold: \textbf{sed do eiusmod tempor incididunt, duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur} 45 | \item Text in semibold: \textsb{quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat} 46 | \end{itemize} 47 | \end{frame} 48 | 49 | \begin{frame} 50 | \frametitle{Slide with nested lists} 51 | \begin{itemize} 52 | \item Sed do eiusmod tempor incididunt: 53 | \begin{itemize} 54 | \item Quis nostrud exercitation ullamco laboris Quis nostrud exercitation ullamco laboris. Quis nostrud exercitation ullamco laboris. 55 | \begin{itemize} 56 | \item Lorem ipsum dolor sit amet 57 | \item Consectetur adipiscing elit 58 | \item Quis nostrud exercitation ullamco laboris 59 | \end{itemize} 60 | \item Nisi ut aliquip ex ea commodo consequat 61 | \item Duis aute irure dolor in reprehenderit in voluptate 62 | \item Velit esse cillum dolore eu fugiat nulla pariatur 63 | \end{itemize} 64 | \item Ut labore et dolore magna aliqua 65 | \end{itemize} 66 | \end{frame} 67 | 68 | \begin{frame} 69 | \frametitle{Slide with numbered list} 70 | \begin{enumerate} 71 | \item Lorem ipsum dolor sit amet 72 | \item Consectetur adipiscing elit 73 | \item Sed do eiusmod tempor incididunt 74 | \item Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat 75 | \item Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur 76 | \item Ut labore et dolore magna aliqua 77 | \end{enumerate} 78 | \end{frame} 79 | 80 | \begin{frame} 81 | \frametitle{Slide with nested numbered lists} 82 | \begin{enumerate} 83 | \item Sed do eiusmod tempor incididunt: 84 | \begin{enumerate} 85 | \item Quis nostrud exercitation ullamco laboris Quis nostrud exercitation ullamco laboris. Quis nostrud exercitation ullamco laboris. 86 | \begin{enumerate} 87 | \item Lorem ipsum dolor sit amet 88 | \item Consectetur adipiscing elit 89 | \item Quis nostrud exercitation ullamco laboris 90 | \end{enumerate} 91 | \item Nisi ut aliquip ex ea commodo consequat 92 | \item Duis aute irure dolor in reprehenderit in voluptate 93 | \item Velit esse cillum dolore eu fugiat nulla pariatur 94 | \end{enumerate} 95 | \item Ut labore et dolore magna aliqua 96 | \end{enumerate} 97 | \end{frame} 98 | 99 | \begin{frame} 100 | \frametitle{Slide with alerts} 101 | Lorem ipsum dolor sit amet: 102 | \begin{itemize} 103 | \item Here is a basic alert: \al{important text} 104 | \item Here is a basic alert on the second click: \al[2]{important text} 105 | \item Here is a positive alert on the third click: \alg[3]{important text} 106 | \item Here are various alerts to flag the sign of numbers: 107 | \begin{itemize} 108 | \item Positive number: \alg{+5} 109 | \item Negative number: \alr{-10} 110 | \item Zero number: \alb{0.0} 111 | \end{itemize} 112 | \item Here are the same alerts on the second and third clicks: 113 | \begin{itemize} 114 | \item Positive number: \alg[2-3]{+5} 115 | \item Negative number: \alr[2]{-10} 116 | \item Zero number: \alb[3]{0.0} 117 | \end{itemize} 118 | \end{itemize} 119 | \end{frame} 120 | 121 | \begin{frame} 122 | \heading{Generic section} 123 | \end{frame} 124 | 125 | \begin{frame} 126 | \frametitle{Slide with some numbers and special characters} 127 | \begin{itemize} 128 | \item Pellentesque habitant 25\% morbi tristique senectus 1837--1905 129 | \item Integer semper euismod sapien vel dictum \#1 and \#6. 130 | \item Donec et ipsum 3/4 in mauris ultricies pulvinar 9/2 131 | \item Nullam quis ``sapien a justo'' vestibulum fermentum 132 | \item Cras sed odio \& vitae mi placerat mollis: \$23. 133 | \item (Nam sagittis sapien id tortor commodo---a pulvinar velit ultricies\ldots Integer ac magna velorci mollis vestibulum.) 134 | \end{itemize} 135 | \end{frame} 136 | 137 | \begin{frame} 138 | \frametitle{Slide with math} 139 | \begin{itemize} 140 | \item Some Roman letters: $G[p + P^7-Q] - A_B + L\{j\} = F(X) \times Z_f/H \cdot (g_4 - i)$ 141 | \item Some Greek letters: $\alpha + \Gamma - \zeta \times \Lambda - [\beta - \pi/2] + \phi^2 \to \infty$ 142 | \item Some blackboard bold letters: $\mathbb{R}^2 + \mathbb{Q}^3 - \mathbb{Z} = \mathbb{C} \subset \mathbb{N} \times \mathbb{N} \neq \mathbb{E} / \mathbb{P}$ 143 | \item Some calligraphic letters: $(\mathcal{A}(X) - \mathcal{B}(j)^3) + [\mathcal{Z}(t) / \mathcal{H}(t)]^5 \mapsto \mathcal{F}(g) $ 144 | \item Some symbols and operators: $\sqrt{\ln(u)} \in Q \propto \cos(\theta) \leq \sin(\pi) - \exp(3)$ 145 | \item Here is an equation: 146 | \begin{equation*} 147 | \int_{0}^{\infty}e^{-\delta t} \ln(c_{j}(t))+ \mathcal{U}(b_{j}(t) - \mathcal{B}(t))- \frac{\zeta}{4} h_{j}(t) -\frac{\gamma \cdot \pi_{j}(t)^2}{8}\,dt 148 | \end{equation*} 149 | \item Here is another display with an equation: 150 | \begin{align*} 151 | \dot{b}_{j}(t) &= i(t) b_{j}(t) + p_{j}(t) y_{j}(t) - \sum_{k=0}^{\infty} p_{k}(x) c_{jk}(x) = \prod_{j} \prod_{k} c_{jk}(t)^{(\epsilon-1)/\epsilon} 152 | \end{align*} 153 | \end{itemize} 154 | \end{frame} 155 | 156 | \begin{frame} 157 | \frametitle{Greek letters and their variants} 158 | \begin{itemize} 159 | \item Some \al{but not all} of the variants of the Greek letters are available 160 | \item There is: 161 | \begin{itemize} 162 | \item a variant for theta: \texttt{\textbackslash vartheta} gives $\vartheta \neq \theta$ 163 | \item a variant for epsilon: \texttt{\textbackslash varepsilon} gives $\varepsilon \neq \epsilon$ 164 | \item a variant for pi: \texttt{\textbackslash varpi} gives $\varpi \neq \pi$ 165 | \item a variant for phi: \texttt{\textbackslash varpsi} gives $\varphi \neq \phi$ 166 | \end{itemize} 167 | \item But there is no available variant for: 168 | \begin{itemize} 169 | \item sigma: \texttt{\textbackslash varsigma} gives $\varsigma = \sigma$ 170 | \item rho: \texttt{\textbackslash varrho} gives $\varrho = \rho$ 171 | \item kappa: \texttt{\textbackslash varkappa} gives an error 172 | \end{itemize} 173 | \end{itemize} 174 | \end{frame} 175 | 176 | \begin{frame} 177 | \frametitle{Bold characters in math} 178 | \begin{itemize} 179 | \item In the template it is possible to bold all math characters 180 | \item Roman characters can be bolded: $\bm{a} + \bm{D} = \bm{E}^2 + \bm{j}/\bm{i}$ 181 | \item Greek characters can also be bolded: $\bm{\alpha} + \bm{\Delta} = \bm{\epsilon}^2 + \bm{\Lambda}/\bm{\Phi}$ 182 | \item Digits can be bolded: $1 + 2 \neq \bm{1} + \bm{2}$ 183 | \item Finally, it is possible to bold calligraphic letters: $\bm{\mathcal{C}} + \bm{\mathcal{E}} - [\bm{\mathcal{X}}+\bm{\mathcal{Y}}]$. 184 | \item \alb[2]{Blackboard-bold letters are already ``bold'' so they cannot be bolded further} 185 | \end{itemize} 186 | \end{frame} 187 | 188 | \begin{frame} 189 | \heading{Slides with figures} 190 | \end{frame} 191 | 192 | \begin{frame} 193 | \frametitle{Basic figure} 194 | \includegraphics[scale=0.275,page=4]{\pdf}% 195 | \end{frame} 196 | 197 | \begin{frame} 198 | \frametitle{Collection of figures (one figure per click)} 199 | \includegraphics<1>[scale=0.275,page=1]{\pdf}% 200 | \includegraphics<2>[scale=0.275,page=2]{\pdf}% 201 | \includegraphics<3>[scale=0.275,page=3]{\pdf}% 202 | \includegraphics<4>[scale=0.275,page=5]{\pdf}% 203 | \end{frame} 204 | 205 | \begin{frame} 206 | \heading{Slide with table} 207 | \end{frame} 208 | 209 | \begin{frame} 210 | \frametitle{Basic table} 211 | \begin{tabular*}{\textwidth}{@{\extracolsep\fill}lcccc} 212 | \toprule 213 | & Column 1 & Column 2 & Column 3 & Column 4\\ 214 | \midrule 215 | Line 1 & A & \al[1]{B} & C & C \\ 216 | Line 2 & D & E & F & \alg[2]{C} \\ 217 | Line 3 & \al[1]{G} & H & I & \alg[2]{C} \\ 218 | \midrule 219 | Line 4 & J & K & L & \alg[2]{C} \\ 220 | Line 5 & M & N & O & \alg[2]{C} \\ 221 | \midrule 222 | Line 6 & \al[1]{B} & \alr[3]{K} & L & C \\ 223 | Line 7 & M & N & -- & \alr[3]{K} \\ 224 | \bottomrule 225 | \end{tabular*} 226 | \end{frame} 227 | 228 | 229 | \begin{frame} 230 | \heading{Slides with theorems} 231 | \end{frame} 232 | 233 | 234 | \begin{frame} 235 | \frametitle{Slide with theorem} 236 | \begin{theorem}[First theorem] 237 | Lorem ipsum dolor sit amet, consectetur adipiscing elit: 238 | \begin{equation*} 239 | \sum_k\mathcal{S}_{k_x}(z) \approx \frac{S(z)^x}{k / 23 -\zeta\gamma [45- S(z)] + \ln(y) - j^2+x(l)} 240 | \end{equation*} 241 | Ut enim ad minim veniam, sunt in culpa qui officia deserunt mollit anim id est laborum. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 242 | \end{theorem} 243 | \end{frame} 244 | 245 | 246 | \begin{frame} 247 | \frametitle{Slide with lemma} 248 | \begin{lemma}[Interesting lemma] 249 | Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat: 250 | \begin{equation} 251 | z^* = \int_{0}^{\infty} \alpha(i) \cdot \frac{1-\beta}{1-\alpha(i)\beta}\,di 252 | \end{equation} 253 | Sed vel sodales dui: 254 | \begin{equation} 255 | S(z)^x > \frac{\zeta}{\gamma} \cdot \exp(45- S(z)) 256 | \end{equation} 257 | \end{lemma} 258 | \end{frame} 259 | 260 | \begin{frame} 261 | \frametitle{Slide with proposition} 262 | \begin{itemize} 263 | \item Quia dolor sit amet consectetur adipiscing velit 264 | \item Sed quia non numquam eius modi tempora incidunt 265 | \item Ut labore et dolore magnam aliquam quaerat voluptatem 266 | \end{itemize} 267 | \begin{proposition}[Application to interesting topic] 268 | Consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua $\mathcal{Z}(\alpha)$. 269 | \begin{equation*} 270 | \frac{\sum_i z^i}{\prod_i q^i} \to \frac{\int_{0}^{\infty} \alpha(i) \cdot [1-\beta]\,di}{1-\exp(\alpha)\sin(\beta)}. 271 | \end{equation*} 272 | Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. 273 | \end{proposition} 274 | \end{frame} 275 | 276 | \begin{frame} 277 | \frametitle{Slide with corrolary} 278 | \begin{corollary}[Implication in a simple yet common case] 279 | Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua: 280 | \begin{equation*} 281 | \mathbb{E}(N(z^*)) \approx \frac{1-\mathbb{P}(\alpha\pi)}{1-\pi}- \frac{f(y)}{z(p)^*} + P(\Gamma). 282 | \end{equation*} 283 | Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 284 | \end{corollary} 285 | \begin{itemize} 286 | \item Donec commodo justo a eros malesuada 287 | \item Eget vulputate tortor accumsan, 288 | \item Vulputate metus eu, finibus nunc: $\ln(y) - \sum j^2 \to x(l)$ 289 | \end{itemize} 290 | \end{frame} 291 | 292 | \begin{frame} 293 | \heading{A long section title: Quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat} 294 | \end{frame} 295 | 296 | 297 | \begin{frame}[label=firstSlide] 298 | \frametitle{Slide with buttons} 299 | \begin{enumerate} 300 | \item Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod 301 | tempor incididunt ut labore et dolore magna aliqua. 302 | \item Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 303 | \item Duis aute irure dolor in reprehenderit in voluptate velit esse 304 | cillum dolore eu fugiat nulla pariatur. 305 | \item Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. 306 | \end{enumerate} 307 | \hyperlink{backupSlide}{\beamergotobutton{Go to a first backup slide}} 308 | \hyperlink{anotherBackupSlide}{\beamergotobutton{Go to another backup slide}} 309 | \end{frame} 310 | 311 | \begin{frame}[allowframebreaks=0.8] 312 | \frametitle{Slide with long derivation or long reference list} 313 | \begin{itemize} 314 | \item lorem 315 | \item ipsum 316 | \item dolor 317 | \item sit 318 | \item amet 319 | \item consectetur 320 | \item adipisicing 321 | \item elit 322 | \item sed 323 | \item do 324 | \item eiusmod 325 | \item tempor 326 | \item incididunt 327 | \item ut 328 | \item labore 329 | \item et 330 | \item dolore 331 | \item magna 332 | \item aliqua 333 | \item ut enim 334 | \item ad minim 335 | \item veniam 336 | \end{itemize} 337 | \end{frame} 338 | 339 | \begin{frame} 340 | \frametitle{Slide with pictograms} 341 | \begin{itemize} 342 | \item implication: this \so that 343 | \item sequential events: this \then that 344 | \item something is going up: \up 345 | \item something is going down: \down 346 | \item something is not changing: \flat 347 | \item[\so] pictogram used as a list item 348 | \item[\then] another pictogram used as a list item 349 | \end{itemize} 350 | \end{frame} 351 | 352 | \lastslide 353 | 354 | \begin{frame}[label=backupSlide] 355 | \frametitle{First backup slide} 356 | \begin{itemize} 357 | \item Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod 358 | tempor incididunt ut labore et dolore magna aliqua. 359 | \item Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 360 | \item Duis aute irure dolor in reprehenderit in voluptate velit esse 361 | cillum dolore eu fugiat nulla pariatur. 362 | \end{itemize} 363 | \hyperlink{firstSlide}{\beamergotobutton{Return to main slide}} 364 | \end{frame} 365 | 366 | \begin{frame}[label=anotherBackupSlide] 367 | \frametitle{Another backup slide} 368 | \begin{enumerate} 369 | \item Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. 370 | \item Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod 371 | tempor incididunt ut labore et dolore magna aliqua. 372 | \begin{enumerate} 373 | \item Duis aute irure dolor in reprehenderit in voluptate velit esse 374 | \item Cillum dolore eu fugiat nulla pariatur 375 | \end{enumerate} 376 | \item Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod 377 | tempor incididunt ut labore et dolore magna aliqua. 378 | \end{enumerate} 379 | \hyperlink{firstSlide}{\beamergotobutton{Return to main slide}} 380 | \end{frame} 381 | 382 | \end{document} --------------------------------------------------------------------------------