- 公式对齐
$$
\begin{aligned}
R_i^0 = R_i^{UB} = &\{ {C_i} + {B_i} + \sum\nolimits_{j < i} {[{J_j}{U_j} + {C_j}(1 - {U_j})]} \} \\
&/(1 - \sum\nolimits_{j < i} {{U_j}} )
\end{aligned}
$$
如果公式需要换行,$A=&B+C+\\ &D+E+F\\ &G+H+I$,即可,这里的换行符 // 后面有个空格, &是对齐
因为大括号包裹的东西,不能被latex自动换行。 - 给公式编号,需要单独用一个环境,且加label,这是为了引用的,就像图片一样
\begin{equation}\label{1}
{R_i} = {C_i} + {B_i} + \Delta
\end{equation} - 文本上下空一段距离
\vspace{1 mm}
左右空一段距离
\hspace{1 mm} - 算法伪代码,比较好看的排版
- 公式换行,\\ 即可
\makeatletter
\newif\if@restonecol
\makeatother
\let\algorithm\relax
\let\endalgorithm\relax
\usepackage[linesnumbered,ruled,vlined]{algorithm2e}%[ruled,vlined]{
\usepackage{algpseudocode}
\usepackage{amsmath}
\renewcommand{\algorithmicrequire}{\textbf{Input:}} % Use Input in the format of Algorithm
\renewcommand{\algorithmicensure}{\textbf{Output:}} % Use Output in the format of Algorithm
\begin{algorithm}
\caption{identify Row Context}
\KwIn{$r_i$, $Backgrd(T_i)$=${T_1,T_2,\ldots ,T_n}$ and similarity threshold $\theta_r$}
\KwOut{$con(r_i)$}
$con(r_i)= \Phi$\;
\For{$j=1;j \le n;j \ne i$}
{
float $maxSim=0$\;
$r^{maxSim}=null$\;
\While{not end of $T_j$}
{
compute Jaro($r_i,r_m$)($r_m\in T_j$)\;
\If{$(Jaro(r_i,r_m) \ge \theta_r)\wedge (Jaro(r_i,r_m)\ge r^{maxSim})$}
{
replace $r^{maxSim}$ with $r_m$\;
}
}
$con(r_i)=con(r_i)\cup {r^{maxSim}}$\;
}
return $con(r_i)$\;
\end{algorithm}
自定义proof 环境
使用命令: \newenvironment {新环境} {开始定义} {结束定义}
举例:定义证明环境为 proof 斜体,证明以 方框结束。
\newenvironment{proof}{<!-- -->{\noindent\it Proof}\quad}{\hfill $\square$\par}
上面的命令中, \noindent 表示 proof 没有缩进,\it 表示 proof 斜体, \quad 表示 proof 后面空四个空格, \hfill 表示右对齐, \square 表示方框,\par表示结尾空一段
变斜体,加粗,作用域仅仅在自定义关键字,{\noindent\it\textbf{Experiment 1.}}
换一个段落,只需要空两行,但是pdf中空一行,用这个
~\\
引用参考文献,两种方式,一种是自己拆分,按照规则斜体,强调等待,这个麻烦(但是用第二种方法后,会自动生成这个,在同级目录,xx.bbl文件,其实这里面的内容和直接插入.tex是一样的作用,如下图所示)。
另一种,bib的方式,这个好用,方法如下:
\bibliographystyle{IEEEtran}
\bibliography{references} %自己新建一个references.bib在.tex同级目录的一个放了所有参考文献集合的文件,如下图所示:
从百度学术,搜索该文章,引用,可以导出bib格式引用,如上图所示。
然后界面中需要点一下这个BibTeX编译一下引用文件确定格式正确:
正文中这样引用即可:正文中引用了,后面才会出现,这样自动保证参考文献按照顺序排列的,省心了!!!