summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/beamer-contrib/themes/beamerthemeconcrete/lagrange/demo-lagrange.tex
blob: 59f793bcc4a4568b5ad618740072aa702e5e6e97 (plain)
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
% -*- coding: utf-8 -*-

\documentclass[11pt,xcolor={rgb}]{beamer}

\usetheme{lagrange}

\usepackage{arev}

\usepackage{listings}

\lstset{
  basicstyle=\ttfamily\color{accent2},
  frame=single,
}

\begin{document}

\title{Beamer Theme Lagrange}
\author{Author Name}
\institute{Institute Name}
\occasion{Some Conference}

\begin{frame}[plain]
\titlepage
\end{frame}

\section{Introduction}

\begin{frame}
\frametitle{Introduction}
Beamer theme Lagrange is inspired by these two themes
\begin{itemize}
  \item Pdfscreen theme Overlay4
  \item Keynote theme Drafting
\end{itemize}
\end{frame}

\section{First Example}

\begin{frame}[fragile=singleslide]
\frametitle{First Example}
The following is a simple example
\begin{lstlisting}
\documentclass[xcolor={rgb}]{beamer}

\usetheme{lagrange}

\begin{document}

\begin{frame}
 Hello Beamer!
\end{frame}

\end{document}
\end{lstlisting}
Note that you \textcolor{accent3}{need to} use \lstinline!xcolor={rgb}! option for this theme.
\end{frame}

\section{Customization}

\begin{frame}[fragile=singleslide]
\frametitle{Customization}
To change vertical spaces between lines in TOC pages,
you could redefine these two commands:
\begin{lstlisting}
\renewcommand{\sectionintochideskip}{10pt}
\renewcommand{\sectionintocshowskip}{6pt}
\end{lstlisting}
\end{frame}

\end{document}