📅  最后修改于: 2023-12-03 14:38:58.679000             🧑  作者: Mango
\LaTeX 是一种基于 \TeX 的排版系统,广泛用于论文、学术文章、书籍排版等领域。为使排版工作更好地进行,\LaTeX 提供了大量的命令和环境,以帮助程序员更好地处理和组织文档内容。
以下是一些常见的 \LaTeX 命令,更多命令可通过查阅 \LaTeX 文档获得。
| 命令 | 作用 |
| ------------------------ | ------------------------------------------------------------ |
| \documentclass{class}
| 指定文档类(如 article、book 等) |
| \usepackage{package}
| 使用特定宏包提供额外功能(如 graphics、amsmath 等) |
| \begin{document}
| 开始文档 |
| \end{document}
| 结束文档 |
| \section{title}
| 添加一层标题 |
| \subsection{title}
| 添加二层标题 |
| \subsubsection{title}
| 添加三层标题 |
| \paragraph{title}
| 段落标题 |
| \subparagraph{title}
| 段内小标题 |
| \centering
| 居中排版 |
| \raggedright
| 左对齐排版 |
| \raggedleft
| 右对齐排版 |
| \textbf{text}
| 加粗文本 |
| \textit{text}
| 斜体文本 |
| \underline{text}
| 下划线文本 |
| \textcolor{color}{text}
| 改变文本颜色 |
| \cite{ref}
| 引用参考文献 |
| \label{label}
| 为目标位置添加标签 |
| \ref{label}
| 引用标签指向的位置 |
| \caption{text}
| 添加图表标题 |
| \includegraphics{file}
| 插入图片 |
| \begin{itemize}
| 列表环境开始 |
| \end{itemize}
| 列表环境结束 |
| \item
| 列表项 |
| \begin{enumerate}
| 编号列表环境开始 |
| \end{enumerate}
| 编号列表环境结束 |
| \begin{table}
| 表格环境开始 |
| \end{table}
| 表格环境结束 |
| \begin{center}
| 居中排版环境开始 |
| \end{center}
| 居中排版环境结束 |
\documentclass{article} % 指定文档类
\usepackage{amsmath} % 使用amsmath宏包
\begin{document} % 开始文档
\section{Introduction} % 添加一层标题
This is an introduction. % 正文
\subsection{Subsection} % 添加二层标题
This is a subsection. % 正文
\begin{itemize} % 列表环境开始
\item Item 1 % 列表项
\item Item 2 % 列表项
\end{itemize} % 列表环境结束
Refer to Table \ref{tab:example} for example. % 引用标签指向的位置
\begin{table} % 表格环境开始
\centering % 居中排版
\caption{Table Example} % 添加表格标题
\label{tab:example} % 为目标位置添加标签
\begin{tabular}{|c|c|c|} % 设定表格列数和对齐方式
\hline
cell1 & cell2 & cell3 \\ \hline
cell4 & cell5 & cell6 \\ \hline
cell7 & cell8 & cell9 \\ \hline
\end{tabular}
\end{table} % 表格环境结束
\end{document} % 结束文档
以上是一些常用的 \LaTeX 命令和环境,使用它们可以使排版工作更便捷和高效。熟练掌握这些命令和环境,能够为论文和学术文章等的排版提供有力的支持。