Cheatsheets
Quickly find the commands you need. Search by name, description, or category.
| Command | Description | Category | Example |
|---|---|---|---|
| \documentclass{...} | Defines the type of document | Structure | - |
| \usepackage{...} | Loads a package to add functionality | Structure | - |
| \begin{document} | Starts the actual document content | Structure | - |
| \textbf{...} | Bold text | Formatting | - |
| \textit{...} | Italic text | Formatting | - |
| \underline{...} | Underlined text | Formatting | - |
| \section{...} | Creates a top-level section | Structure | - |
| \alpha, \beta, \gamma | Lowercase Greek letters | Math | α, β, γ |
| \frac{num}{den} | Creates a fraction in math mode | Math | - |
| \sum_{i=1}^{n} | Summation with limits | Math | - |
| \int_{a}^{b} | Integral with limits | Math | - |
| \begin{itemize} | Starts a bulleted list | Environments | - |
| \item | Adds a new item to a list | Environments | - |
| \includegraphics{...} | Inserts an image (requires graphicx) | Graphics | - |
| \label{...} | Creates a marker for cross-referencing | References | - |
| \ref{...} | Refers to a label | References | - |