-
Notifications
You must be signed in to change notification settings - Fork 0
/
example.tex
37 lines (28 loc) · 1012 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
% Use lualatex or xelatex, since the template requires fontspec:
%!TEX program = lualatex
\documentclass{beamer}
\usetheme{labss}
\title{
\texorpdfstring{
% A formatted version of the title to show on screen:
{\textcolor{black!25}{\hrule}}\vspace{4pt}
\textcolor{labss_hl}{The~LABSS~Beamer~template:\\\huge an example}
\vspace{6pt}{\textcolor{black!25}{\hrule}}
}{
% A plain version of the title for the PDF file
The LABSS Beamer template: an example
}
}
\date{\today}
\author{Nicolas Payette}
\institute{Laboratory of Agent-Based Social Simulation, ISTC, CNR}
\titlegraphic{\logos} % the \logos command is provided by the template
\begin{document}
\maketitle
\begin{frame}[fragile]{This is a frame}
% The frame needs to be [fragile] to use the \verb command.
\huge We have defined the \verb+\hl+ command for \hl{highlighting text}\ldots
\par\vfill\hfill
\normalsize\ldots and the \verb+\nt+ command \nt{for more subtle, discrete notes}.
\end{frame}
\end{document}