Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marlinstrub/mpscheatsheet
A LaTeX document class for clean and space-efficient cheat sheets.
https://github.com/marlinstrub/mpscheatsheet
cheat cheat-sheet cheatsheet latex latex-class
Last synced: about 2 months ago
JSON representation
A LaTeX document class for clean and space-efficient cheat sheets.
- Host: GitHub
- URL: https://github.com/marlinstrub/mpscheatsheet
- Owner: marlinstrub
- Created: 2020-09-30T14:11:33.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-10-03T14:59:42.000Z (over 4 years ago)
- Last Synced: 2024-10-19T00:54:42.714Z (3 months ago)
- Topics: cheat, cheat-sheet, cheatsheet, latex, latex-class
- Language: TeX
- Homepage:
- Size: 366 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.org
Awesome Lists containing this project
README
* MPS Cheat Sheet
This repository contains a LaTeX document class called ~mpscheatsheet~ to create clean and space-efficient cheat sheets. Simply specify
#+begin_src latex
\documentclass[columns=3,8pt]{mpscheatsheet}
#+end_srcat the beginning of your document, write some text, and it will look like this:
#+attr_html: title="An example cheat sheet with the `mpscheatsheet` class."
[[file:screenshots/example.jpg]]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~.
#+attr_html: title="Different number of columns in the `mpscheatsheet` class."
[[file:screenshots/columns.jpg]]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.
#+attr_html: title="Different colored headings in the `mpscheatsheet` class."
[[file:screenshots/color.jpg]]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.