1.{itemize}命令对文本进行简单的排列,不是采用序号,而是实心圆点符号。这个命令需要和\item配合使用。{strong}加粗,与\texbf结合使用。
2.\lipsum:会默认产生7个段落,\lipsum[1-10]产生1到10段落。\lipsum[23]产生第23段落。导言区加载\usepackage{lipsum}就可以使用\lipsum命令。
3.\emph: \emph{内容}。斜体。
4.添加定理,引理、证明等:https://blog.csdn.net/weixin_42696387/article/details/103745917
//定理
//LaTeX 头部添加
\newtheorem{theorem}{Theorem}[section]
\begin{theorem}
***//定理内容
\label{thm-1}
\end{theorem}
\begin{proof}
***//证明过程
\end{proof}
5.\label{thm:latex} 标记,可以跟在很多命令的后面充当标签,比如可以跟在定理后面,可以跟在图片后面。\label后面的标记就像一个特定的身份象征,就像一个人的身份证号码指向这个人一样。用\eqref可对齐引用。即使用\label{}来添加公式标签,使用\ref{}来引用编号。
6.插入图片:{figure}
\includegraphics[选项]{图片名},其重要属性:
height:图片高度
width:图片宽度
angle:旋转角度
scale:缩放图形
难点:如何插入多张图片,即占双栏。
7.编号,尤其是数学公式:
手动编号:
$$a^2 + b^2 = c^2 \tag{1.1}$$
$$a^2 + b^2 = c^2 \tag{no.1}$$
效果如下:
自动编号:
\begin{equation}
a^2+b^2=c^2
\end{equation}
\begin{equation}
a^3+b^3=c^3
\end{equation}
展示效果如下:
8.矩阵:
外层没有括号:\begin{matrix} \end{matrix}
外层是圆括号:\begin{pmatrix} \end{pmatrix}
外层是方括号:\begin{bmatrix} \end{bmatrix}
9.除法
\frac{{Opposite}}{{Hypotenuse}}\cos ^{ - 1} \theta \arcsin \theta
10.{cases}
11.参考文献
\begin{thebibliography}{99}
\begin{appendices}
后面的数字是\bibitem标签的最大宽度,如果参考文献数量在1-9,后面的数字可以用,1,2,3,····,9,a,b,····都可以。如果参考文献数量在10-99,后面的数字可以用,10, 21, 33,····,19,ab,bc,b0····都可以。以此类推。