├── .gitignore ├── LICENSE ├── README.md ├── beamercolorthemeSimplePlus.sty ├── beamerfontthemeSimplePlus.sty ├── beamerinnerthemeSimplePlus.sty ├── beamerthemeSimplePlus.sty ├── preview ├── slide-1.webp ├── slide-10.webp ├── slide-11.webp ├── slide-2.webp ├── slide-3.webp ├── slide-4.webp ├── slide-5.webp ├── slide-6.webp ├── slide-7.webp ├── slide-8.webp └── slide-9.webp ├── reference.bib ├── sample.pdf └── sample.tex /.gitignore: -------------------------------------------------------------------------------- 1 | ## Core latex/pdflatex auxiliary files: 2 | *.aux 3 | *.lof 4 | *.log 5 | *.lot 6 | *.fls 7 | *.out 8 | *.toc 9 | *.fmt 10 | *.fot 11 | *.cb 12 | *.cb2 13 | .*.lb 14 | 15 | ## Intermediate documents: 16 | *.dvi 17 | *.xdv 18 | *-converted-to.* 19 | # these rules might exclude image files for figures etc. 20 | # *.ps 21 | # *.eps 22 | # *.pdf 23 | 24 | ## Generated if empty string is given at "Please type another file name for output:" 25 | .pdf 26 | 27 | ## Bibliography auxiliary files (bibtex/biblatex/biber): 28 | *.bbl 29 | *.bcf 30 | *.blg 31 | *-blx.aux 32 | *-blx.bib 33 | *.run.xml 34 | 35 | ## Build tool auxiliary files: 36 | *.fdb_latexmk 37 | *.synctex 38 | *.synctex(busy) 39 | *.synctex.gz 40 | *.synctex.gz(busy) 41 | *.pdfsync 42 | 43 | ## Build tool directories for auxiliary files 44 | # latexrun 45 | latex.out/ 46 | 47 | ## Auxiliary and intermediate files from other packages: 48 | # algorithms 49 | *.alg 50 | *.loa 51 | 52 | # achemso 53 | acs-*.bib 54 | 55 | # amsthm 56 | *.thm 57 | 58 | # beamer 59 | *.nav 60 | *.pre 61 | *.snm 62 | *.vrb 63 | 64 | # changes 65 | *.soc 66 | 67 | # comment 68 | *.cut 69 | 70 | # cprotect 71 | *.cpt 72 | 73 | # elsarticle (documentclass of Elsevier journals) 74 | *.spl 75 | 76 | # endnotes 77 | *.ent 78 | 79 | # fixme 80 | *.lox 81 | 82 | # feynmf/feynmp 83 | *.mf 84 | *.mp 85 | *.t[1-9] 86 | *.t[1-9][0-9] 87 | *.tfm 88 | 89 | #(r)(e)ledmac/(r)(e)ledpar 90 | *.end 91 | *.?end 92 | *.[1-9] 93 | *.[1-9][0-9] 94 | *.[1-9][0-9][0-9] 95 | *.[1-9]R 96 | *.[1-9][0-9]R 97 | *.[1-9][0-9][0-9]R 98 | *.eledsec[1-9] 99 | *.eledsec[1-9]R 100 | *.eledsec[1-9][0-9] 101 | *.eledsec[1-9][0-9]R 102 | *.eledsec[1-9][0-9][0-9] 103 | *.eledsec[1-9][0-9][0-9]R 104 | 105 | # glossaries 106 | *.acn 107 | *.acr 108 | *.glg 109 | *.glo 110 | *.gls 111 | *.glsdefs 112 | *.lzo 113 | *.lzs 114 | 115 | # uncomment this for glossaries-extra (will ignore makeindex's style files!) 116 | # *.ist 117 | 118 | # gnuplottex 119 | *-gnuplottex-* 120 | 121 | # gregoriotex 122 | *.gaux 123 | *.gtex 124 | 125 | # htlatex 126 | *.4ct 127 | *.4tc 128 | *.idv 129 | *.lg 130 | *.trc 131 | *.xref 132 | 133 | # hyperref 134 | *.brf 135 | 136 | # knitr 137 | *-concordance.tex 138 | # TODO Uncomment the next line if you use knitr and want to ignore its generated tikz files 139 | # *.tikz 140 | *-tikzDictionary 141 | 142 | # listings 143 | *.lol 144 | 145 | # luatexja-ruby 146 | *.ltjruby 147 | 148 | # makeidx 149 | *.idx 150 | *.ilg 151 | *.ind 152 | 153 | # minitoc 154 | *.maf 155 | *.mlf 156 | *.mlt 157 | *.mtc[0-9]* 158 | *.slf[0-9]* 159 | *.slt[0-9]* 160 | *.stc[0-9]* 161 | 162 | # minted 163 | _minted* 164 | *.pyg 165 | 166 | # morewrites 167 | *.mw 168 | 169 | # nomencl 170 | *.nlg 171 | *.nlo 172 | *.nls 173 | 174 | # pax 175 | *.pax 176 | 177 | # pdfpcnotes 178 | *.pdfpc 179 | 180 | # sagetex 181 | *.sagetex.sage 182 | *.sagetex.py 183 | *.sagetex.scmd 184 | 185 | # scrwfile 186 | *.wrt 187 | 188 | # sympy 189 | *.sout 190 | *.sympy 191 | sympy-plots-for-*.tex/ 192 | 193 | # pdfcomment 194 | *.upa 195 | *.upb 196 | 197 | # pythontex 198 | *.pytxcode 199 | pythontex-files-*/ 200 | 201 | # tcolorbox 202 | *.listing 203 | 204 | # thmtools 205 | *.loe 206 | 207 | # TikZ & PGF 208 | *.dpth 209 | *.md5 210 | *.auxlock 211 | 212 | # todonotes 213 | *.tdo 214 | 215 | # vhistory 216 | *.hst 217 | *.ver 218 | 219 | # easy-todo 220 | *.lod 221 | 222 | # xcolor 223 | *.xcp 224 | 225 | # xmpincl 226 | *.xmpi 227 | 228 | # xindy 229 | *.xdy 230 | 231 | # xypic precompiled matrices and outlines 232 | *.xyc 233 | *.xyd 234 | 235 | # endfloat 236 | *.ttt 237 | *.fff 238 | 239 | # Latexian 240 | TSWLatexianTemp* 241 | 242 | ## Editors: 243 | # WinEdt 244 | *.bak 245 | *.sav 246 | 247 | # Texpad 248 | .texpadtmp 249 | 250 | # LyX 251 | *.lyx~ 252 | 253 | # Kile 254 | *.backup 255 | 256 | # gummi 257 | .*.swp 258 | 259 | # KBibTeX 260 | *~[0-9]* 261 | 262 | # TeXnicCenter 263 | *.tps 264 | 265 | # auto folder when using emacs and auctex 266 | ./auto/* 267 | *.el 268 | 269 | # expex forward references with \gathertags 270 | *-tags.tex 271 | 272 | # standalone packages 273 | *.sta 274 | 275 | # Makeindex log files 276 | *.lpz 277 | 278 | # xwatermark package 279 | *.xwm 280 | 281 | # REVTeX puts footnotes in the bibliography by default, unless the nofootinbib 282 | # option is specified. Footnotes are the stored in a file with suffix Notes.bib. 283 | # Uncomment the next line to have this generated file ignored. 284 | #*Notes.bib 285 | 286 | *.vrb 287 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 🍃 SimplePlus Beamer Theme 2 | 3 | The **SimplePlus Beamer Theme** is a minimalist and elegant LaTeX template tailored for academic and scientific presentations. It has been modified from the [🫐SimpleDarkBlue](https://github.com/pm25/SimpleDarkBlue-BeamerTheme) Beamer Theme and focuses on simplicity and clarity in presentation design. 4 | 5 | You can find the SimplePlus Beamer Theme on [Overleaf](https://www.overleaf.com/latex/templates/simpleplus-beamertheme/wfmfjhdcrdfx) and [CTAN](https://ctan.org/pkg/beamertheme-simpleplus). The Overleaf link provides an easy-to-use web-based LaTeX editor, while the CTAN link allows you to download the template files for use in your own LaTeX environment. 6 | 7 | - Overleaf: [https://www.overleaf.com/latex/templates/simpleplus-beamertheme/wfmfjhdcrdfx](https://www.overleaf.com/latex/templates/simpleplus-beamertheme/wfmfjhdcrdfx) 8 | - CTAN: [https://ctan.org/pkg/beamertheme-simpleplus](https://ctan.org/pkg/beamertheme-simpleplus) 9 | 10 | ## Preview 11 | 12 | Below are some example slides created with the SimplePlus Beamer Theme: 13 | 14 | ![Slide 1](preview/slide-1.webp) 15 | ![Slide 2](preview/slide-2.webp) 16 | ![Slide 3](preview/slide-3.webp) 17 | ![Slide 4](preview/slide-4.webp) 18 | ![Slide 5](preview/slide-5.webp) 19 | ![Slide 6](preview/slide-6.webp) 20 | ![Slide 9](preview/slide-9.webp) 21 | ![Slide 10](preview/slide-10.webp) 22 | 23 | ## License 24 | 25 | This project is released under the **Unlicense License**, granting you complete freedom to use, modify, and distribute the template. For more details, see the [LICENSE](./LICENSE) file. 26 | -------------------------------------------------------------------------------- /beamercolorthemeSimplePlus.sty: -------------------------------------------------------------------------------- 1 | %------------------------------------------------------------- 2 | % Package: beamertheme-SimplePlus 3 | % Author: Pin-Yen Huang (pyhuang97@gmail.com) 4 | % Version: 1.1, 2025-01-07 5 | % Link: https://github.com/pm25/SimplePlus-BeamerTheme 6 | % This is free and unencumbered software released into the 7 | % public domain; see for details. 8 | %------------------------------------------------------------- 9 | 10 | %-------------------------------------- 11 | % Color Settings 12 | %-------------------------------------- 13 | 14 | % define custom colors 15 | \definecolor{MutedRed}{rgb}{0.97, 0.92, 0.92} 16 | \definecolor{MutedGreen}{rgb}{0.92, 0.97, 0.92} 17 | \definecolor{MutedBlue}{rgb}{0.92, 0.92, 0.97} 18 | \definecolor{MutedBlack}{rgb}{0.95, 0.95, 0.95} 19 | 20 | \definecolor{MediumRed}{rgb}{0.925, 0.345, 0.345} 21 | \definecolor{MediumGreen}{rgb}{0.37, 0.7, 0.66} 22 | \definecolor{MediumBlue}{rgb}{0.015, 0.315, 0.45} 23 | \definecolor{MediumBlack}{rgb}{0.219, 0.259, 0.349} 24 | 25 | \definecolor{DarkBlue}{rgb}{0.05, 0.15, 0.35} 26 | 27 | % set beamer color themes 28 | \usecolortheme[named=DarkBlue]{structure} 29 | 30 | % customize colors for elements 31 | \setbeamercolor{titlelike}{parent=structure} 32 | \setbeamercolor{block title}{fg=white,bg=MediumBlue} 33 | \setbeamercolor{block body}{fg=black,bg=MutedBlue} 34 | \setbeamercolor{block title example}{fg=white,bg=MediumGreen} 35 | \setbeamercolor{block body example}{fg=black,bg=MutedGreen} 36 | \setbeamercolor{block title alerted}{fg=white,bg=MediumRed} 37 | \setbeamercolor{block body alerted}{fg=black,bg=MutedRed} -------------------------------------------------------------------------------- /beamerfontthemeSimplePlus.sty: -------------------------------------------------------------------------------- 1 | %------------------------------------------------------------- 2 | % Package: beamertheme-SimplePlus 3 | % Author: Pin-Yen Huang (pyhuang97@gmail.com) 4 | % Version: 1.1, 2025-01-07 5 | % Link: https://github.com/pm25/SimplePlus-BeamerTheme 6 | % This is free and unencumbered software released into the 7 | % public domain; see for details. 8 | %------------------------------------------------------------- 9 | 10 | %-------------------------------------- 11 | % Font Settings 12 | %-------------------------------------- 13 | 14 | \setbeamerfont{structure}{family=\sffamily,series=\mdseries} 15 | 16 | \setbeamerfont{title}{size=\LARGE,series=\bfseries,parent=structure} 17 | \setbeamerfont{subtitle}{size=\normalsize,parent=title} 18 | 19 | \setbeamerfont{date}{size=\scriptsize,series=\mdseries,parent=structure} 20 | \setbeamerfont{author}{size=\large,series=\mdseries,parent=structure} 21 | \setbeamerfont{institute}{size=\scriptsize,series=\mdseries,parent=structure} 22 | 23 | \setbeamerfont{section in toc}{size=\large,series=\bfseries,parent=structure} 24 | \setbeamerfont{section in head/foot}{size=\tiny,parent=structure} 25 | \setbeamerfont{subsection in toc}{size=\small,series=\mdseries,parent={section in toc}} 26 | 27 | \setbeamerfont{frametitle}{size=\Large,series=\bfseries,parent=structure} 28 | \setbeamerfont{framesubtitle}{parent=frametitle,size=\large} 29 | 30 | \setbeamerfont{caption}{size=\footnotesize} 31 | \setbeamerfont{item}{parent=structure,series=\mdseries} 32 | \setbeamerfont{block title}{size=\large,series=\mdseries,parent={structure,block body}} -------------------------------------------------------------------------------- /beamerinnerthemeSimplePlus.sty: -------------------------------------------------------------------------------- 1 | %------------------------------------------------------------- 2 | % Package: beamertheme-SimplePlus 3 | % Author: Pin-Yen Huang (pyhuang97@gmail.com) 4 | % Version: 1.1, 2025-01-07 5 | % Link: https://github.com/pm25/SimplePlus-BeamerTheme 6 | % This is free and unencumbered software released into the 7 | % public domain; see for details. 8 | %------------------------------------------------------------- 9 | 10 | %-------------------------------------- 11 | % Inner Theme Settings 12 | %-------------------------------------- 13 | 14 | \pgfdeclareverticalshading[lower.bg,upper.bg]{bmb@transition}{200cm}{% 15 | color(0pt)=(lower.bg); color(2pt)=(lower.bg); color(4pt)=(lower.bg)} 16 | 17 | \setbeamersize{text margin left=2em,text margin right=2em} 18 | 19 | \setbeamertemplate{footline}[frame number] 20 | \setbeamertemplate{navigation symbols}{} 21 | 22 | \setbeamertemplate{blocks}[rounded][shadow=false] 23 | 24 | \setbeamertemplate{enumerate items}[default] 25 | \setbeamertemplate{enumerate subitem}[default] 26 | \setbeamertemplate{itemize items}[circle] 27 | \setbeamertemplate{itemize subitem}[circle] 28 | 29 | % table of contents (overview) settings 30 | \setbeamertemplate{section in toc}[sections numbered] 31 | \setbeamertemplate{subsection in toc}{% 32 | \leavevmode 33 | \leftskip=3.2em 34 | \rlap{\hskip-2em\inserttocsectionnumber.\inserttocsubsectionnumber} 35 | \inserttocsubsection\par 36 | } 37 | 38 | % frame title customization 39 | \setbeamertemplate{frametitle}{% 40 | \vspace*{0.5em} 41 | \bfseries\insertframetitle\par 42 | \vskip-6pt 43 | \hrulefill\vspace{-0.1em} 44 | } 45 | 46 | % title page customization 47 | \setbeamertemplate{title page}{% 48 | \vspace{6em} 49 | \begingroup 50 | \centering 51 | % ------------------------ 52 | \begin{beamercolorbox}[sep=10pt,center]{title} 53 | \usebeamerfont{title}\inserttitle\par% 54 | \ifx\insertsubtitle\@empty% 55 | \else% 56 | \vskip0.25em% 57 | {\usebeamerfont{subtitle}\usebeamercolor[fg]{subtitle}\insertsubtitle\par}% 58 | \fi% 59 | \end{beamercolorbox}% 60 | \vskip0.5em\par 61 | % ------------------------ 62 | \begin{beamercolorbox}[sep=8pt,center]{author} 63 | \usebeamerfont{author}\insertauthor 64 | \end{beamercolorbox} 65 | \vskip-1em 66 | % ------------------------ 67 | \begin{beamercolorbox}[sep=8pt,center]{institute} 68 | \usebeamerfont{institute}\insertinstitute 69 | \end{beamercolorbox} 70 | % ------------------------ 71 | \begin{beamercolorbox}[sep=8pt,center]{date} 72 | \usebeamerfont{date}\insertdate 73 | \end{beamercolorbox}\vskip0.5em 74 | % ------------------------ 75 | {\usebeamercolor[fg]{titlegraphic}\inserttitlegraphic\par} 76 | \endgroup 77 | \vfill 78 | } -------------------------------------------------------------------------------- /beamerthemeSimplePlus.sty: -------------------------------------------------------------------------------- 1 | %------------------------------------------------------------- 2 | % Package: beamertheme-SimplePlus 3 | % Author: Pin-Yen Huang (pyhuang97@gmail.com) 4 | % Version: 1.1, 2025-01-07 5 | % Link: https://github.com/pm25/SimplePlus-BeamerTheme 6 | % This is free and unencumbered software released into the 7 | % public domain; see for details. 8 | %------------------------------------------------------------- 9 | 10 | %-------------------------------------- 11 | % Beamer Settings 12 | %-------------------------------------- 13 | 14 | \mode 15 | 16 | \usefonttheme{SimplePlus} 17 | \usecolortheme{SimplePlus} 18 | \useinnertheme{SimplePlus} 19 | 20 | \mode -------------------------------------------------------------------------------- /preview/slide-1.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-1.webp -------------------------------------------------------------------------------- /preview/slide-10.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-10.webp -------------------------------------------------------------------------------- /preview/slide-11.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-11.webp -------------------------------------------------------------------------------- /preview/slide-2.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-2.webp -------------------------------------------------------------------------------- /preview/slide-3.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-3.webp -------------------------------------------------------------------------------- /preview/slide-4.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-4.webp -------------------------------------------------------------------------------- /preview/slide-5.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-5.webp -------------------------------------------------------------------------------- /preview/slide-6.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-6.webp -------------------------------------------------------------------------------- /preview/slide-7.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-7.webp -------------------------------------------------------------------------------- /preview/slide-8.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-8.webp -------------------------------------------------------------------------------- /preview/slide-9.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/preview/slide-9.webp -------------------------------------------------------------------------------- /reference.bib: -------------------------------------------------------------------------------- 1 | @article{p1, 2 | author = {John Smith}, 3 | title = {Title of the publication}, 4 | journal = {Journal Name}, 5 | year = {2012}, 6 | volume = {12}, 7 | number = {3}, 8 | pages = {45--678} 9 | } -------------------------------------------------------------------------------- /sample.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pm25/SimplePlus-BeamerTheme/d4134a7659515d1842e599b33aa84a82e39197d2/sample.pdf -------------------------------------------------------------------------------- /sample.tex: -------------------------------------------------------------------------------- 1 | %---------------------------------------------------------------------------------------- 2 | % PACKAGES AND THEMES 3 | %---------------------------------------------------------------------------------------- 4 | 5 | \documentclass[aspectratio=169,xcolor=dvipsnames]{beamer} 6 | \usetheme{SimplePlus} 7 | 8 | \usepackage{hyperref} 9 | \usepackage{graphicx} % Allows including images 10 | \usepackage{booktabs} % Allows the use of \toprule, \midrule and \bottomrule in tables 11 | 12 | %---------------------------------------------------------------------------------------- 13 | % TITLE PAGE 14 | %---------------------------------------------------------------------------------------- 15 | 16 | \title{SimplePlus Beamer Theme} 17 | \subtitle{Subtitle} 18 | 19 | \author{Pin-Yen Huang} 20 | 21 | \institute 22 | { 23 | Department of Computer Science and Information Engineering \\ 24 | National Taiwan University % Your institution for the title page 25 | } 26 | \date{\today} % Date, can be changed to a custom date 27 | 28 | %---------------------------------------------------------------------------------------- 29 | % PRESENTATION SLIDES 30 | %---------------------------------------------------------------------------------------- 31 | 32 | \begin{document} 33 | 34 | \begin{frame} 35 | % Print the title page as the first slide 36 | \titlepage 37 | \end{frame} 38 | 39 | \begin{frame}{Overview} 40 | % Throughout your presentation, if you choose to use \section{} and \subsection{} commands, these will automatically be printed on this slide as an overview of your presentation 41 | \tableofcontents 42 | \end{frame} 43 | 44 | %------------------------------------------------ 45 | \section{First Section} 46 | %------------------------------------------------ 47 | 48 | \begin{frame}{Bullet Points} 49 | \begin{itemize} 50 | \item Lorem ipsum dolor sit amet, consectetur adipiscing elit 51 | \item Aliquam blandit faucibus nisi, sit amet dapibus enim tempus eu 52 | \item Nulla commodo, erat quis gravida posuere, elit lacus lobortis est, quis porttitor odio mauris at libero 53 | \item Nam cursus est eget velit posuere pellentesque 54 | \item Vestibulum faucibus velit a augue condimentum quis convallis nulla gravida 55 | \end{itemize} 56 | \end{frame} 57 | 58 | %------------------------------------------------ 59 | 60 | \begin{frame}{Blocks of Highlighted Text} 61 | In this slide, some important text will be \alert{highlighted} because it's important. Please, don't abuse it. 62 | 63 | \begin{block}{Block} 64 | Sample text 65 | \end{block} 66 | 67 | \begin{alertblock}{Alertblock} 68 | Sample text in red box 69 | \end{alertblock} 70 | 71 | \begin{examples} 72 | Sample text in green box. The title of the block is ``Examples". 73 | \end{examples} 74 | \end{frame} 75 | 76 | %------------------------------------------------ 77 | 78 | \begin{frame}{Multiple Columns} 79 | \begin{columns}[c] % The "c" option specifies centered vertical alignment while the "t" option is used for top vertical alignment 80 | 81 | \column{.45\textwidth} % Left column and width 82 | \textbf{Heading} 83 | \begin{enumerate} 84 | \item Statement 85 | \item Explanation 86 | \item Example 87 | \end{enumerate} 88 | 89 | \column{.45\textwidth} % Right column and width 90 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Integer lectus nisl, ultricies in feugiat rutrum, porttitor sit amet augue. Aliquam ut tortor mauris. Sed volutpat ante purus, quis accumsan dolor. 91 | 92 | \end{columns} 93 | \end{frame} 94 | 95 | %------------------------------------------------ 96 | \section{Second Section} 97 | %------------------------------------------------ 98 | 99 | \begin{frame}{Table} 100 | \begin{table} 101 | \begin{tabular}{l l l} 102 | \toprule 103 | \textbf{Treatments} & \textbf{Response 1} & \textbf{Response 2} \\ 104 | \midrule 105 | Treatment 1 & 0.0003262 & 0.562 \\ 106 | Treatment 2 & 0.0015681 & 0.910 \\ 107 | Treatment 3 & 0.0009271 & 0.296 \\ 108 | \bottomrule 109 | \end{tabular} 110 | \caption{Table caption} 111 | \end{table} 112 | \end{frame} 113 | 114 | %------------------------------------------------ 115 | 116 | \begin{frame}{Theorem} 117 | \begin{theorem}[Mass--energy equivalence] 118 | $E = mc^2$ 119 | \end{theorem} 120 | \end{frame} 121 | 122 | %------------------------------------------------ 123 | 124 | \begin{frame}{Figure} 125 | Uncomment the code on this slide to include your own image from the same directory as the template .TeX file. 126 | %\begin{figure} 127 | %\includegraphics[width=0.8\linewidth]{test} 128 | %\end{figure} 129 | \end{frame} 130 | 131 | %------------------------------------------------ 132 | 133 | \begin{frame}[fragile] % Need to use the fragile option when verbatim is used in the slide 134 | \frametitle{Citation} 135 | An example of the \verb|\cite| command to cite within the presentation:\\~ 136 | 137 | This statement requires citation \cite{p1}. 138 | \end{frame} 139 | 140 | %------------------------------------------------ 141 | 142 | \begin{frame}{References} 143 | \footnotesize 144 | \bibliography{reference.bib} 145 | \bibliographystyle{apalike} 146 | \end{frame} 147 | 148 | %------------------------------------------------ 149 | 150 | \begin{frame} 151 | \Huge{\centerline{\textbf{The End}}} 152 | \end{frame} 153 | 154 | %---------------------------------------------------------------------------------------- 155 | 156 | \end{document} --------------------------------------------------------------------------------