This repository contains a LaTeX document class called mpscheatsheet
to create clean and space-efficient cheat sheets. Simply specify
\documentclass[columns=3,8pt]{mpscheatsheet}
at the beginning of your document, write some text, and it will look like this:
The header uses the values from the \title
, \author
, and \email
commands. See the tex
document in this repository for a minimal example.
The number of columns can be specified with the user option columns=N
where N >= 2
. The default number of columns is 4
.
The background color of the section headings can be specified with the user option sectioncolor={R, G, B}
, where R
, G
, and B
are values between 0
and 255
that represent the red, green, and blue components of the color, respectively.
The class builds on the (ext)article class and accepts any option that the extarticle class accepts, e.g., 8pt
for smaller text size. The only option that’s disabled is twocolumn
, use columns=2
instead.