Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/povanberg/flux-beamer
Flux is a modern style beamer presentation.
https://github.com/povanberg/flux-beamer
Last synced: 3 months ago
JSON representation
Flux is a modern style beamer presentation.
- Host: GitHub
- URL: https://github.com/povanberg/flux-beamer
- Owner: povanberg
- Created: 2018-08-30T13:17:00.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-09-07T11:10:04.000Z (about 6 years ago)
- Last Synced: 2024-04-04T19:34:42.247Z (7 months ago)
- Language: TeX
- Homepage:
- Size: 734 KB
- Stars: 67
- Watchers: 3
- Forks: 24
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flux beamer
Flux is a modern style beamer presentation. It is based on simple design patterns and flat colors.
Available as template on [Overleaf](https://www.overleaf.com/latex/templates/flux-beamer/vhzbnhyymddd#).
> Disclaimer: This theme is mainly optimized for personal needs and shared without guarantees.
## Demos
![alt text](https://github.com/pvanberg/flux-beamer/blob/master/demo.png)
## Themes
Flux provides five differents color palettes. (asphalt, blue, red, green, gray)
![alt text](https://github.com/pvanberg/flux-beamer/blob/master/demo_themes.png)
## Minimal Working Example
```
\documentclass[9pt]{beamer}
\usepackage[sfdefault]{roboto}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage{styles/fluxmacros} % Define where theme files are located.
\usefolder{styles}
\usetheme[style=asphalt]{flux} % Available styles: asphalt, blue, red, green, gray\title{Flux beamer template}
\subtitle{Modern theme v0.1}
\author{John Doe}
\institute{Institute, location}
\date{\today}
\titlegraphic{assets/overleaf.png}\begin{document}
\titlepage
\begin{frame}
\frametitle{Table of contents}
\tableofcontents
\end{frame}\end{document}
```## Compilation
Due to the use of bibliography and tikz figures, the compilation sequence must follow:
```
pdflatex demo.tex
biber demo.tex
pdflatex demo.tex
pdflatex demo.tex
```