lplus
is a beautiful minimalistic, flexible, fully-featured Beamer theme. It aims for a simplistic, clean look that puts your content first, while providing sensible defaults for all aspects, including a custom color theme and automatic darkmode.
Installing lplus
from source involves three steps:
- Download the source with a git clone of the repository or as a zip archive of the latest development version.
- Move the
*.sty
files to the folder containing your presentation. To installlplus
system-wide, move the*.sty
files to a folder in your TeX path instead. - Use the theme for your presentation by declaring \usetheme{lplus} in the preamble of your Beamer document.
The following code snippet shows a minimal working example of using lplus
:
\documentclass{beamer}
\usetheme{lplus}
\title{A minimal example}
\date{\today}
\author{Firstname Lastname}
\institute{Institute}
\begin{document}
\maketitle
\section{First Section}
\begin{frame}{First Frame}
Hello, world!
\end{frame}
\end{document}
For all options and examples, see the demo slides.