├── slides.pdf ├── example.png ├── nus-logo.png ├── README.md └── slides.tex /slides.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflyingwolves/NUS-Slides-Latex-Template/HEAD/slides.pdf -------------------------------------------------------------------------------- /example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflyingwolves/NUS-Slides-Latex-Template/HEAD/example.png -------------------------------------------------------------------------------- /nus-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theflyingwolves/NUS-Slides-Latex-Template/HEAD/nus-logo.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NUS Slides Latex Templates 2 | 3 | This is a latex template for the convenience of students from National University of Singapore to prepare for their presentation slides. NUS color themes are added, with support from different layout themes. 4 | 5 | Although it comes with a default setting, it's thoroughly explained in the file how to further customize the template according to your own flavour. 6 | 7 | An example file of how the theme looks like is also attached. Please see below for an example of the title page. 8 | 9 | ![Title Page](/example.png) 10 | -------------------------------------------------------------------------------- /slides.tex: -------------------------------------------------------------------------------- 1 | % Copyright 2016 by Wang Kunzhen . 2 | % 3 | % This is a latex template adapted from Till Tantau's Beamer template. 4 | % It adds theme customizations for the convenience of users from the 5 | % National University of Singapore. 6 | % 7 | % In principle, this file can be redistributed and/or modified under 8 | % the terms of the GNU Public License, version 2. 9 | % 10 | % However, this file is supposed to be a template to be modified 11 | % for your own needs. For this reason, if you use this file as a 12 | % template and not specifically distribute it as part of a another 13 | % package/program, I grant the extra permission to freely copy and 14 | % modify this file as you see fit and even to delete this copyright 15 | % notice. 16 | 17 | \documentclass[xcolor=dvipsnames]{beamer} 18 | 19 | % There are many different themes available for Beamer. A comprehensive 20 | % list with examples is given here: 21 | % http://deic.uab.es/~iblanes/beamer_gallery/index_by_theme.html 22 | % You can uncomment the themes below if you would like to use a different 23 | % one: 24 | %\usetheme{AnnArbor} 25 | %\usetheme{Antibes} 26 | %\usetheme{Bergen} 27 | % \usetheme{Berkeley} 28 | %\usetheme{Berlin} 29 | %\usetheme{Boadilla} 30 | % \usetheme{boxes} 31 | %\usetheme{CambridgeUS} 32 | %\usetheme{Copenhagen} 33 | %\usetheme{Darmstadt} 34 | %\usetheme{default} 35 | %\usetheme{Frankfurt} 36 | %\usetheme{Goettingen} 37 | %\usetheme{Hannover} 38 | % \usetheme{Ilmenau} 39 | % \usetheme{JuanLesPins} 40 | % \usetheme{Luebeck} 41 | % \usetheme{Madrid} 42 | \usetheme{Malmoe} 43 | %\usetheme{Marburg} 44 | % \usetheme{Montpellier} 45 | % \usetheme{PaloAlto} 46 | % \usetheme{Pittsburgh} 47 | % \usetheme{Rochester} 48 | % \usetheme{Singapore} 49 | % \usetheme{Szeged} 50 | % \usetheme{Warsaw} 51 | 52 | \definecolor{nus-orange}{RGB}{239,124,0} 53 | \definecolor{nus-white}{RGB}{255,255,255} 54 | \definecolor{nus-blue}{RGB}{0,61,124} 55 | \definecolor{nus-black}{RGB}{0,0,0} 56 | 57 | % Uncomment this section if you want the title background for each slide to be gradient like decaying from nus-orange to nus-white. 58 | % \useoutertheme{shadow} 59 | % \usepackage{tikz} 60 | % \usetikzlibrary{shadings} 61 | % \colorlet{titleleft}{nus-orange} 62 | % \colorlet{titleright}{nus-orange!45!nus-white} 63 | % \makeatletter 64 | % \pgfdeclarehorizontalshading[titleleft,titleright]{beamer@frametitleshade}{\paperheight}{% 65 | % color(0pt)=(titleleft); 66 | % color(\paperwidth)=(titleright)} 67 | % \makeatother 68 | % End of gradient slide title effect. 69 | 70 | \setbeamercolor{section in head/foot}{bg=nus-blue, fg=nus-white} 71 | \setbeamercolor{subsection in head/foot}{bg=nus-blue, fg=nus-white} 72 | \setbeamercolor{frametitle}{bg=nus-orange, fg=nus-black} 73 | \setbeamercolor{title}{bg=nus-orange, fg=nus-white} 74 | \setbeamercolor{alerted text}{fg=nus-orange} 75 | \setbeamercolor{block title}{fg=nus-blue} 76 | \setbeamercolor{block body}{fg=nus-black} 77 | 78 | \setbeamertemplate{theorems}[numbered] 79 | \setbeamertemplate{propositions}[numbered] 80 | 81 | \setbeamertemplate{bibliography item}{\insertbiblabel} 82 | 83 | \setbeamertemplate{title page}[default][colsep=-4bp,rounded=true, shadow=true] 84 | 85 | \title{Title of the presentation} 86 | 87 | \subtitle{Sub-title} 88 | 89 | \author{Authors' names} 90 | 91 | \institute[National University of Singapore] % (optional, but mostly needed) 92 | { 93 | Department of Computer Science\\ 94 | National University of Singapore 95 | } 96 | 97 | \titlegraphic{ 98 | \includegraphics[width=2cm]{nus-logo} 99 | } 100 | 101 | \date{14 Mar 2016} 102 | 103 | % Uncomment this, if you want the table of contents to pop up at 104 | % the beginning of each subsection: 105 | % \AtBeginSubsection[] 106 | % { 107 | % \begin{frame}{Outline} 108 | % \tableofcontents[currentsection,currentsubsection] 109 | % \end{frame} 110 | % } 111 | 112 | \begin{document} 113 | 114 | \begin{frame} 115 | \titlepage 116 | \end{frame} 117 | 118 | \begin{frame}{Outline} 119 | \tableofcontents 120 | \end{frame} 121 | 122 | \section{First Main Section} 123 | 124 | \subsection{First Subsection} 125 | \begin{frame}{First Slide Title}{Optional Subtitle} 126 | \begin{itemize} 127 | \item { 128 | My first point. 129 | } 130 | \item { 131 | My second point. 132 | } 133 | \end{itemize} 134 | \end{frame} 135 | 136 | \subsection{Second Subsection} 137 | % You can reveal the parts of a slide one at a time 138 | % with the \pause command: 139 | \begin{frame}{Second Slide Title} 140 | \begin{itemize} 141 | \item { 142 | First item. 143 | \pause % The slide will pause after showing the first item 144 | } 145 | % You can also specify when the content should appear 146 | % by using : 147 | \item<3-> { 148 | Third item. 149 | } 150 | % or you can use the \uncover command to reveal general 151 | % content (not just \items): 152 | \item<5-> { 153 | Fifth item. \uncover<6->{Extra text in the fifth item.} 154 | } 155 | \end{itemize} 156 | \end{frame} 157 | 158 | \section{Second Main Section} 159 | 160 | \subsection{Second Subsection} 161 | \begin{frame}{Main Theorem} 162 | \begin{theorem} 163 | Theorem Statements. Example for citation \cite{Author1990}. 164 | \end{theorem} 165 | 166 | \begin{proof} 167 | Proof of the theorem goes here. 168 | \end{proof} 169 | \end{frame} 170 | 171 | % Placing a * after \section means it will not show in the 172 | % outline or table of contents. 173 | \section*{Summary} 174 | 175 | \begin{frame}{Summary} 176 | \begin{itemize} 177 | \item 178 | The \alert{first main message} of your talk in one or two lines. 179 | \item 180 | The \alert{second main message} of your talk in one or two lines. 181 | \item 182 | Perhaps a \alert{third message}, but not more than that. 183 | \end{itemize} 184 | 185 | \begin{itemize} 186 | \item 187 | Outlook 188 | \begin{itemize} 189 | \item 190 | Something you haven't solved. 191 | \item 192 | Something else you haven't solved. 193 | \end{itemize} 194 | \end{itemize} 195 | \end{frame} 196 | 197 | % Bibliography section. Use \bibitem to add more bibliography items. 198 | \section*{Bibliography} 199 | \begin{frame}{Bibliography} 200 | \begin{thebibliography}{10} 201 | 202 | \bibitem{Author1990} 203 | A.~Author. 204 | \newblock {\em Handbook of Everything}. 205 | \newblock Some Press, 1990. 206 | 207 | \bibitem{Someone2000} 208 | S.~Someone. 209 | \newblock On this and that. 210 | \newblock {\em Journal of This and That}, 2(1):50--100, 211 | 2000. 212 | 213 | \end{thebibliography} 214 | \end{frame} 215 | 216 | \end{document} --------------------------------------------------------------------------------