LaTeX Cheatsheet - LaTeX Academic Typesetting Reference
LaTeX rewards sticking to a few reliable snippets and punishes improvising at the last minute. Grouped by document structure, text formatting, math, lists, tables and references, each command shows its purpose and common companion packages. Use it to scaffold a paper skeleton, typeset math correctly, and wire up citations without re-opening the boring user guide. After reading you can draft an article that compiles on the first pass.
Document Structure 8
\documentclass{article}文档type(article/report/book/beamer)
\usepackage[utf8]{inputenc}编码Set
\usepackage{amsmath}数学package
\title{Title} \author{Author} \date{\today}标题信息
\begin{document} ... \end{document}文档环境
\maketitle生成标题
\tableofcontents生成Directory
\section{} \subsection{} \subsubsection{}章节命令
Text Formats 8
\textbf{bold}粗体
\textit{italic}斜体
\underline{underline}下划线
\emph{emphasis}强调(通常斜体)
\texttt{monospace}宽字体
\footnote{footnote text}脚注
\label{sec:intro} \ref{sec:intro}标签&引用
\cite{key}引用文献
Math Formulas 10
$E = mc^2$行内公式
\[ E = mc^2 \]独立公式(无编号)
\begin{equation} ... \end{equation}编号公式
\begin{align} ... \end{align}对齐公式
\frac{a}{b}分数
\sqrt{x}平方根
\sum_{i=1}^{n} x_isum
\int_{a}^{b} f(x) dx积分
\alpha \beta \gamma \delta希腊字母
\infty \partial \nabla特殊符号
List Environments 3
\begin{itemize} \item ... \end{itemize}无序list
\begin{enumerate} \item ... \end{enumerate}有序list
\begin{description} \item[term] desc \end{description}描述list
Tables 6
\begin{tabular}{|c|c|c|} ... \end{tabular}表格环境
\hline横线
a & b & c \\行分隔
\multicolumn{2}{|c|}{text}merge列
\begin{table}[htbp] ... \end{table}浮动表格
\caption{Caption} \label{tab:1}表格标题&标签
Charts 5
\usepackage{graphicx}图形package
\includegraphics[width=0.5\textwidth]{image.png}Insert图片
\begin{figure}[htbp] ... \end{figure}浮动图
\caption{Caption} \label{fig:1}图标题&标签
\begin{subfigure} ... \end{subfigure}子图(需 subcaption package)
References 5
\bibliographystyle{plain}参考文献样式
\bibliography{references}引用 bib File
\begin{thebibliography}{99} ... \end{thebibliography}手动参考文献
\cite{key}引用
\citep{key} \citet{key}括号引用/文本引用(natbib)
Tips
- Use \left( and \right) in math to auto-size parentheses.
- Float placement [htbp]: h here, t top, b bottom, p separate page.
- Use \label and \ref for cross-references instead of hardcoding numbers.
Official References
Each command links to its official documentation below, so you can verify the latest usage and read deeper.
Maintained by LaoHand
Publicly updated on Jul 21, 2026, continuously proofread against official docs.
Contact Us
Wrong command or description? Send us corrections, business inquiries or product feedback by email.
Contact Us