Cheatsheets

Quickly find the commands you need. Search by name, description, or category.

CommandDescriptionCategoryExample
\documentclass{...}Defines the type of documentStructure-
\usepackage{...}Loads a package to add functionalityStructure-
\begin{document}Starts the actual document contentStructure-
\textbf{...}Bold textFormatting-
\textit{...}Italic textFormatting-
\underline{...}Underlined textFormatting-
\section{...}Creates a top-level sectionStructure-
\alpha, \beta, \gammaLowercase Greek lettersMathα, β, γ
\frac{num}{den}Creates a fraction in math modeMath-
\sum_{i=1}^{n}Summation with limitsMath-
\int_{a}^{b}Integral with limitsMath-
\begin{itemize}Starts a bulleted listEnvironments-
\itemAdds a new item to a listEnvironments-
\includegraphics{...}Inserts an image (requires graphicx)Graphics-
\label{...}Creates a marker for cross-referencingReferences-
\ref{...}Refers to a labelReferences-