空心数学符号
$w^{(i)} \in \mathbb{R}^n$
1
| w^{(i)} \in \mathbb{R}^n
|
取消表格浮动
latex会根据文字排版来调整图片或者表格的位置,但是有些作业的排版需要取消这个功能。可以使用
1 2 3
| \usepackage{float} \begin{table}[H] \end{table}
|
这样便可取消浮动,按照原始顺序排版。
写表格
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| \usepackage{float} \begin{table}[H] \centering \begin{tabular}[t]{*{3}{|c}|} \hline Method & Linear kernel & RBF kernel \\ \hline one-versus-one & 55.0198\% & 40.0264\% \\ one-versus-rest & \textbf{57.3316\%} & \textbf{56.7371\%} \\ part-versus-part & 53.1044\% & 45.7728\% \\ \hline \end{tabular} \caption{Accuracy} \end{table}
|
公式下标位置
在equation模式下,有的时候我们希望下标的位置能在正下方,可以使用\limits
来改变下标的位置
如果是自定义的符号想要添加下表的话,可以先将这个符号声明为一个数学符号
1
| \DeclareMathOperator*{\argmax}{argmax}
|
然后就可以使用
取消公式的标号
可以在后面加上\nonumber
来跳过当前公式的标号。
1 2 3
| \begin{equation} l(f(x),y)=\mathbf{1}\{f(x) \neq y\}\nonumber \end{equation}
|
带有左括号的方程组
1 2 3 4 5 6 7 8 9 10
| \begin{equation} \begin{split} f(x)=\left\{ \begin{aligned} 1 &\qquad \beta P(y=1|x) \geq \alpha P(y=0|x) \\ 0 &\qquad \alpha P(y=0|x) > \beta P(y=1|x) \\ \end{aligned} \right.\nonumber \end{split} \end{equation}
|
插入图片
1 2 3
| \begin{center} \includegraphics[width=0.8\textwidth]{figure1} \end{center}
|
公式符号加粗
空心符号,表示空间