A minimalist LaTeX beamer
presentation theme suited for talks and powerpoint haters crafted by a LaTeX newbie.
It follows the idea of absolute minimalism to avoid distraction and the “one idea one slide” philosophy.
- Clone or just simply download
beamerthememi.sty
. - Put
beamerthememi.sty
where your LaTeX compiler can find it (a path contained byTEXINPUTS
). Usually the source root will do the job. - Insert
\usetheme{mi}
into your source file.
macro | description |
---|---|
\mititle{text} |
Huge title. Use instead of frametitle for more control. |
\milarge{text} |
Large text. Could be used for subtitles. |
\mifullimage[caption]{url} |
The image fills the entire frame. |
\mifullwidthimage[caption]{url} |
The image fills the entire width of the frame. |
\mifullheightimage[caption]{url} |
The image fills the entire height of the frame. |
\micenter{content} |
Vertically centering and reduce frame margins |
\misection[name in toc]{section name} |
Creates an underlined section slide |
shorthand | expanded form |
---|---|
\begin{miframe} content \end{miframe} |
\begin{frame}\micenter{content}\end{frame} |
\mitextframe{text} |
\begin{miframe}\mititle{content}\end{miframe} |
\miimageframe[caption]{url} |
\begin{frame}\mifullimage[caption]{url}\end{frame} |
Take a look in examples/
. To build the examples using the provided Makefile you will need latexmk
.