文 | 沐铭
最近在编写人工智能领域书籍的一小章节以及论文撰写,利用到latex排版,随手记录一下。
数学符号
插入图片
\begin{figure}
\centering
\includegraphics[width=.8\textwidth]{example.png} %example.png是图片文件的相对路径
\caption{分类器的任务是根据输入属性集x确定类标号y} %caption是图片的标题
\label{img} %此处的label相当于一个图片的专属标志,目的是方便上下文的引用
\end{figure}
表格
常见的三线表
\documentclass[UTF8]{ctexart}
\begin{document}
\begin{tabular}{ccc}
\hline
姓名& 学号& 性别\\
\hline
Steve Jobs& 001& Male\\
Bill Gates& 002& Female\\
\hline
\end{tabular}
\end{document}
合并嵌套
\begin{table}[H]
\centering
\begin{tabular}{|c|c|c|c|}% 通过添加 | 来表示是否需要绘制竖线
\hline
\multicolumn{2}{|c|}{ \multirow{2}*{} }& \multicolumn{2}{c|}{预测的类}\\
\cline{3-4}
\multicolumn{2}{|c|}{}&类=1&类=0\\
\hline
% |c|表示居中并且单元格两侧添加竖线 最后是文本
\multirow{2}*{实际的类}&类=1&$f_{11}$&$f_{10}$\\
\cline{2-4} % 在表格最下方绘制横线
&类=0&$f_{01}$&$f_{00}$\\
\hline % 在表格最下方绘制横线
\end{tabular}
\caption{二分类问题的混淆矩阵}
% 表格下标题
\end{table}
结果为
插入项目符号和编号
不带序号
\begin{itemize}
\item hello...
\item good morning....
\end{itemize}
结果为:
- hello
- good morning
带序号
关于{enumerate},这是用于带序号的列表。 默认生成 1,2,3。如果想要其他修饰,如(1) (2)....或step-1,step2,需要加载 \usepackage{enumerate},然后如下使用
\begin{enumerate}[step 1]
\item good morning...
\item good morning....
\end{enumerate}