summaryrefslogtreecommitdiff
path: root/macros/latex/contrib/beamer-contrib/themes/beamerthemeconcrete/README.md
blob: 816f6206b301640c7199767b1f9fcdfdf40467fb (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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
# The `concrete` bundle: A collection of flat beamer themes for LaTeX presentations

```
Author:  Jianrui Lyu <tolvjr@163.com>
Website: https://github.com/lvjr/concrete
License: The LaTeX Project Public License 1.3c
```

## 1\. Introduction

The `concrete` bundle provides a collection of flat beamer themes for making LaTeX presentations, especially for academic and scientific presentations.

It consists of the following seven beamer themes:

- light background themes
  - beamer theme bernoulli
  - beamer theme fermat
  - beamer theme lagrange
  - beamer theme riemann
- dark background themes
  - beamer theme dirichlet
  - beamer theme gauss
  - beamer theme mobius

## 2\. Usage

After installing this bundle, you can write a document like this:

```
\documentclass[xcolor={rgb}]{beamer}
\usetheme{bernoulli}
\begin{document}

\title{Beamer Theme Bernoulli}
\subtitle{A nice theme for LaTeX presentations}
\author{Author Name}
\institute{Institute Name}

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

\section{Section One}

\subsection{Subsection One}

\begin{frame}{Frame Title}
Frame \insertframenumber
\end{frame}

\begin{frame}{Frame Title}
Frame \insertframenumber
\end{frame}

\subsection{Subsection Two}

\begin{frame}{Frame Title}
Frame \insertframenumber
\end{frame}

\begin{frame}{Frame Title}
Frame \insertframenumber
\end{frame}

\section{Section Two}

\subsection{Subsection One}

\begin{frame}{Frame Title}
Frame \insertframenumber
\end{frame}

\begin{frame}{Frame Title}
Frame \insertframenumber
\end{frame}

\subsection{Subsection Two}

\begin{frame}{Frame Title}
Frame \insertframenumber
\end{frame}

\begin{frame}{Frame Title}
Frame \insertframenumber
\end{frame}

\end{document}
```

Note that you **NEED** to add `xcolor={rgb}` option in loading `beamer` class. You can also have a look at the demo files included in this bundle.