% 基本格式化 \textbf{粗体文本} % textbf = text bold face \textit{斜体文本} % textit = text italic \underline{下划线文本} % underline = underline \texttt{等宽字体} % texttt = text typewriter
% 字体大小 (相对于正常大小的预定义尺寸) {\tiny 超小字体} % tiny = very small size {\small 小字体} % small = smaller than normal {\large 大字体} % large = larger than normal {\huge 超大字体} % huge = very large size
% 段落控制 \noindent 这段不缩进。% noindent = no indentation \hspace{2cm}这里有额外空间。% hspace = horizontal space
% 换行与分段 第一行文本 \\ % \\ = new line 第二行文本
% 列表环境 \begin{itemize} % itemize = unordered list \item 无序列表项1 % item = list item \item 无序列表项2 \end{itemize}