LaTeX Notecards

This is a LaTeX document class for the generation of cheat sheets as they are handy for the presentation of slide decks. It is based on the flacards-style by Norbert Stuhrmann.

Download

You can either download the following file into the /tex/latex/base/ folder and run mktexlsr, or you simply copy it into the same folder as your LaTeX document and compile as usual.

Commands

Most commands are derived from the flacard package, but thanks to wrapping content into a minipage, it is now possible to include arbitrary formatting. Please refer to the flacard command set for details. In addition, \fontratio{0.??} can be used to reduce the font size to ??%.

Important

Please print the ps file directly or modify pdflatex parameters to create the page in the right size. Otherwise it may happen that lines are not printed correctly.

License

This package is licensed under GNU GPL.

Code

Sample file:

\documentclass[frontgrid,a4paper]{notecards}

\usepackage{amsmath}


\usepackage{amsfonts}

\usepackage{amssymb}


\fontratio{0.8}

\pagesetup{2}{3}


\begin{document}

\card

{

\section{Erste Karte, Vorderseite}


\begin{itemize}

\item Das ist alles auf der ersten Karte!

\item Karten mit \LaTeX.

\item ...

\end{itemize}



\section{Immer noch erste Karte}

Achtung! Dieser Blindtext wird gerade durch 130 Millionen Rezeptoren Ihrer Netzhaut

erfasst. Die Zellen werden dadurch in einen Erregungszustand versetzt, der sich

\"uber den Sehnerv in dem hinteren Teil Ihres Gehirns ausbreitet. Von dort aus

\"ubertr\"agt sich die Erregung in Sekundenbruchteilen auch

in andere Bereiche Ihres Grosshirns. Ihr Stirnlappen wird stimuliert. Von dort

aus gehen jetzt Willensimpulse aus, die Ihr zentrales Nervensystem in konkrete

Handlungen umsetzt. Kopf und Augen reagieren bereits. Sie folgen dem Text, nehmen

die darin enthaltenen Informationen auf wie ein Schwamm. Nicht auszudenken, was

mit Ihnen h\"atte passieren k\"onnen, wenn dieser

Blindtext durch einen echten Text ersetzt worden w\"are.

}

{

\setcounter{section}{7}

\section{Kehrseite der Karte}


\begin{itemize}

\item Das

\item ist

\item die

\item R\"uckseite


\item des Ganzen

\end{itemize}

}

\end{document}