Latex + IEEEtran模板 + 样例 + 数学符号表

  • 1. 引用包
  • 2. 文章开始,标题,作者
  • 3. 引用
    • 3.1 文献:
    • 3.2 脚注:
  • 4. 摘要及关键词
  • 5. 正文部分
  • 6. 公式
    • 6.1 矩阵(更)
    • 6.2 等式
    • 6.3 引理
    • 6.4 例子(含多行公式对齐)
    • 6.5 分段函数(大括号)
    • 6.6 算法
    • 6.7 表格,三线表(更)
  • 7. 样例全文
    • 7.1 .tex文件
    • 7.2 .bib文件
  • 8. 附录——符号
    • 8.1 通用符号
    • 8.2 希腊字母
    • 8.3 二元关系符
    • 8.4 二元运算符
    • 8.5 巨算符
    • 8.6 数学重音符号
    • 8.7 箭头
    • 8.8 作为重音的箭头符号
    • 8.9 定界符
    • 8.10 用于行间公式的大定界符
    • 8.11 其他符号
  • 9. 补充
    • 9.1 作者信息

用Latex写一篇IEEEtran模板的文章,根据师兄楚楚可薇的文章记录一些事宜,便于日后查看,如有总结错误的地方,欢迎指正。
【2022.9.22 追加前言】根据第7部分中的样例全文基本可以学会使用该博客讲到的知识点,但标题中带有(更)的部分建议再看一眼,里面有后续遇到的问题的注意事项,第8部分为写论文时特殊符号写法的索引,第9部分为后续补充。文献引用bib格式转bibitem格式移步VS CODE + Latex。

1. 引用包

\documentclass[conference,a4paper]{IEEEtran}                 %导入IEEEtran的A4格式模板
\usepackage[inner=0.9055in,outer=0.5118in,top=0.5in]{geometry}   %左边距inner,右边距outer,上边距top\usepackage{amsmath}         %数学公式包
\allowdisplaybreaks[3]          %导入数学公式包的前提下,允许跨页,1,2,3,4表示允许程度,但equation环境不可换页%长公式跨页可用align公式
\usepackage{bbm}                %粗体、双线体
\usepackage{multirow}           %纵向合并单元格
\usepackage{booktabs}           %三线表
\usepackage{color}
\usepackage{amssymb}            %数学定理和证明过程包
\let\labelindent\relax
\usepackage{enumitem}           %调整垂直/水平间距/标签样式\usepackage{amsthm}                              %定理环境
\newtheorem{ownlemma}{Lemma}                    %引理。定理将两个lemma改为theorem 即可
\newtheorem{owncorollary}{Corollary}            %推论
\newtheorem{owndefinition}{Definition}          %定义
\newtheorem{ownproperty}{Property}              %性质\usepackage{algorithm}                           %代码环境
\usepackage[noend]{algpseudocode}               %伪代码中 类似 if...end if去掉end if语句
\renewcommand{\algorithmicrequire}{Input:}
\renewcommand{\algorithmicensure}{Output:}
\renewcommand{\algorithmiccomment}[1]{// #1}    %C语言的注释格式\bibliographystyle{IEEEtran}                   %引用文献格式
\usepackage[numbers, sort & compress]{natbib}   %压缩引用序号\usepackage{soul}            %高亮显示,为提高本文可读性而添加,实际论文不需要该包

2. 文章开始,标题,作者

Latex中,begin和end成对出现。
注意此处的.bib文件需导入所有文章使用到的全部参考文献,写法见VS CODE + Latex第二部分仅使用Latex。下方代码的文件名需与之对应,且存放于同一文件目录下

\begin{document}                     %文章开头第一句
...                                     %文章内容全部位于该位置
\bibliography{NameofReference}          %参考文献.bib文件名
\end{document}                          %文章结尾最后一句

标题

\titile{Title of the Paper}

作者

\author{My_name$^\S$,MyTheacher$^\S{}^{*}$\\
$^\S$NameofCollege, NameofSchool\\
}
\maketitle

样例:其中 \\ 表示换行,空一行表示分段

\begin{document}
\title{This is a Sample}
\author{Qiuqiu Qiu$^\S$,San Zhang$^\S{}^{*}$\\
$^\S$School of Electrical Engineering \& Intelligentization, University\\
}
\maketitle
\end{document}

3. 引用

所引文献需在 bib 文件中,引用时,若位于句末,则序号在逗号或句号前面;若引用其他文章的定理/引理/推论,例如 \cite[lemma 1]{Name} 表示引用文章NameLemma1.

3.1 文献:

例如:
bib中有文章:
@article{blaum1993new,title={{New Array Codes for Multiple Phased Burst Correction}},author={Blaum, Mario and Roth, Ron M},journal={IEEE Transactions on Information Theory},volume={39},number={1},pages={66--77},year={1993},publisher={IEEE}
}
引用时:
...decoding method \cite{blaum1993new}. %括号里为文章别名。

3.2 脚注:

\foodnote{content of foodnote}


同一页面最下方有如下显示:

4. 摘要及关键词

摘要

\begin{abstract}
Here is the abstract of this paper.
...
\end{abstract}

关键词:逗号隔开关键字,最后一个关键词后加句号。

\begin{IEEEkeywords}
keyword1, keyword2, ..., last keyword.
\end{IEEEkeywords}

5. 正文部分

The main body of the paper :
\section{section 1}
Here is the section 1,usually an introduction.The second paragraph of this section.\\       %空一行表示分段,\\表示换行
The third paragraph of this section.
\section{section 2}
Here is the section 2.
\subsection{subsection 1}
Here is the subsection 1 of section 2.
\subsection{subsection 2}
Here is the subsection 2 of section 2.\\
...
\section{section 3}
Here is the section 3.
\subsection{subsection 1}
Here is the subsection 1 of section 3.
\subsection{subsection 2}
Here is the subsection 2 of section 3.\\
...
\section{section 4}
Here is the section 4.\section{last section}
Here is the last section,usually an conclusion.

6. 公式

公式、变量等两端用&夹起来。

例如:

$p$,  $\mathcal{C}(p,n,r)$, $\mathbb{F}_2[x]/M_p(x)$\\       %注意此处的 F
$M_p(x)=1+x+\cdots+x^{p-1} \:(\bmod\: 1+x^p)$\\            %居中的点,_下标,^上标
$N_p(x)=1+x+\ldots+x^{p-1}$\\                               %靠下的点$[c_{i,j}]_{i=0,j=0}^{p-2,n-1},c_[i,j]\in \mathbb{F}_2,n\leq p$\\   % \in 属于,\leq 小于等于 $c_j(x) = \sum\nolimits_{i=0}^{p-2}c_{i,j}x^i$(i.e., $c_0(x) = c_{0,0} + c_{1,0}x + c_{2,0}x^2+ \ldots + c_{n-2,0}x^{n-2}$)\\

6.1 矩阵(更)

2022.09.22更
在编写 “A Matrix” 矩阵时,注意到右下角的一块矩阵使用的是 smallmatrix,这是因为在双栏模板中,如果矩阵较大时使用 bmatrix 会导致部分矩阵超出排版位置,甚至与另一栏中的文字重叠,矩阵没有那么大的时候,右下方的矩阵也用bmatrix即可。

\textbf{Matrix multiplication:}
\[
\mathbf{H}_{r \times n} \cdot               % 注意区分 \cdot 和 \cdots
\begin{bmatrix}c_0(x) & c_1(x) & \cdots & c_{n-1}(x)
\end{bmatrix}^T = \mathbf{0}^T,
\]
\textbf{A Matrix:}
\[
\left[ \begin{array} {c|c}
\mathbf{I}_{\lambda - \ell - 1} & \mathbf{0}  \\ \hline
\mathbf{0} &
\begin{smallmatrix}
\\
1 & 0 & \cdots & 0 & 0 \\
1 & x_{\lambda -\ell}+x_{\lambda - \ell -1} & \cdots & 0 & 0 \\
\vdots & \vdots & \ddots & \vdots & \vdots \\
0 & 0 & \cdots & x_{\lambda-2}+x_{\lambda-\ell-1} & 0 \\
0 & 0 & \cdots & 1 & x_{\lambda-1}+x_{\lambda - \ell - 1}
\end{smallmatrix}
\end{array}
\right],
\]
\textbf{Matrix and equation with number:}
\begin{equation}                                %带编号的等式所需环境\mathbf{H}_{r \times n} = \begin{bmatrix}1 & 1 & 1 & \cdots & 1 \\1 & x & x^2 & \cdots & x^{n-1} \\\vdots & \vdots & \vdots & \ddots & \vdots \\1 & x^{r-1} & x^{2(r-1)} & \cdots & x^{(n-1)(r-1)}\end{bmatrix}
\end{equation}

6.2 等式

注意区别带编号和不带编号的等式写法,若后文引用当前公式需赋予当前公式标签。

\begin{equation} \sum\limits_{j=0}^{n-1}c_{m-j \cdot \ell, j} =0,
\end{equation}where $0 < m \le p-1$ and $r-1 > \ell \ge 0$,           %实际条件并非如此,且第二个范围理应也写作小于等于,为熟悉这四个符号而写作此
\begin{equation} \prod\nolimits_{j=0}^{n-1}c_{m-j \cdot \ell, j} =0, \nonumber        % 不加编号% \limits表示上下标位于\sum符号的上方和下方% \nolimits表示上下标位于符号右边的上方和下方
\end{equation}
\hl{The above equation is used to display ``prod" and the differences between ``limits" and ``nolimits".}
\begin{equation}\label{fastdivision}        %赋予公式标签名,便于后文Eq.~\eqref{name of this equation's lable}引用(1+x^d)g(x)=f(x)(\bmod 1+x^p).
\end{equation}

6.3 引理

注意区分上文引用等式时 eqref 与此处引用前文定理 ref

\begin{ownlemma}\cite[lemma 8]{hou2017new} \label{FastDivision} The coefficients of $g(x)$ in Eq.~\eqref{fastdivision} is given by  %对应上文标签\begin{eqnarray}    %多个公式对齐环境g_{p-1} & = & 0;\label{rectify}\\g_{p-d-1}&=&f_{p-1}; \nonumber \\g_{d-1}&=&f_{d-1}; \nonumber \\g_{p-(i+1)d-1} &=& g_{p-id-1} + f_{p-id-1},\:i=1,2,\cdots,p-3. \nonumber\end{eqnarray}
\end{ownlemma}
By Lemma \ref{FastDivision}, the \hl{division} $\frac{f(x)}{1+x^d}$ takes $p-3$ XORs.\\

6.4 例子(含多行公式对齐)

\textbf{Example 1:} Suppose that $S(z)=(1+x^2)+(x^3+x^4)z$ and $R(z)=1-xz$,
we can compute that $Q(z)=R(z)S(z)=(1-xz)S(z)\bmod(1+x^5)$ as follows,
\begin{align*}                  %多行公式对齐
Q(z)=&(1-xz)S(z)=S(z)-xzS(z)\\
=&(1+x^2) +(x+x^4)z + (1+x^4)z^2 \bmod(1+x^5).
\end{align*}

6.5 分段函数(大括号)

\hl{big brace}
\begin{equation}\label{sum207} f_{\ell}(x)=\biggr \{\begin{aligned}&Q_0(x), &\ell=0; \\&x^{e_i}f_{\ell-1}(x) + Q_{\ell}(x), &\ell>0;\end{aligned}
\end{equation}

6.6 算法

\newpage                             %分页
\hl{algorithm}
\begin{algorithm}[h]\caption{Name of Algorithm}\begin{algorithmic}[1]\Require Input of this algorithm.\For{$\ell \leftarrow a$ to $b$}\State equation 1                 %\State 换行\EndFor\State $\cdots$\Ensure output of this algorithm.\end{algorithmic}\label{alg:syn}
\end{algorithm}

6.7 表格,三线表(更)

2022.09.22 更
下列代码中注释说到 “有几个 c 就有几列”,实际上此处列格式不仅可以为 c , 可以是 l / c / r / p{ < width >} ,分别表示 单元格左对齐、居中、右对齐、固定列宽,在列格式之间插入 “ | ”表示绘制表格竖线。
此外,当列数足够多时,数c可以把自己数懵,所以在此介绍批量定义列格式的方法。
\begin{tabular}{|c|c|c|c|c|p{4em}|p{4em}|}” 的批量定义为:
\begin{tabular}{|*{5}{c|}*{2}{p{4em}|}}” 表示,先绘制表格最左侧竖线,接着5个居中单元格及单元格右侧竖线,随后2个列宽为4英寸的单元格及单元格右侧竖线。

\begin{table}[h]\caption {Name of this table}\centering                      %居中\begin{tabular}{ccccccccc}   %有几个c就有几列\toprule                   %表头粗线\multirow{2}{*}{} &        %该单元格由2个垂直单元格合并而来,值为空\multicolumn{8}{c}{\textbf{The following table should add \textbackslash \ before input}} \\        %该单元格由2-9的8个水平单元格合并而来,值为最后一个括号内的内容    \cline{2-9}                %第2-9列画线& input1 & output1 && input2 & output2 && input3 & output3\\ \hline                         %画线1 & \{ & \{ && \} & \} && \% & \%\\                  % 用 & 分隔相邻的两个单元格,&&中间含一个空单元格2 & dag &\dag && S & \S && ddag & \ddag\\3 & copyright & \copyright && pounds & \pounds && P & \P\\4 & dots & \dots \\\bottomrule                %表底粗线\end{tabular}
\end{table}

7. 样例全文

7.1 .tex文件

最后含一些符号表,由于剩余内容较多无法全部列举,故注释掉了。

\documentclass[conference,a4paper]{IEEEtran}                 %导入IEEEtran的A4格式模板
\usepackage[inner=0.9055in,outer=0.5118in,top=0.5in]{geometry}   %左边距inner,右边距outer,上边距top\usepackage{amsmath}             %数学公式包
\allowdisplaybreaks[3]              %导入数学公式包的前提下,允许跨页,1,2,3,4表示允许程度,但equation环境不可换页%长公式跨页可用align公式\usepackage{bbm}                    %粗体、双线体
\usepackage{multirow}               %纵向合并单元格
\usepackage{booktabs}               %三线表
\usepackage{color}
\usepackage{amssymb}                %数学定理和证明过程包
\let\labelindent\relax
\usepackage{enumitem}               %调整垂直/水平间距/标签样式\usepackage{amsthm}              %定理环境
\newtheorem{ownlemma}{Lemma}        %引理
\newtheorem{owncorollary}{Corollary}        %推论
\newtheorem{owndefinition}{Definition}      %定义
\newtheorem{ownproperty}{Property}          %性质\usepackage{algorithm}                           %代码环境
\usepackage[noend]{algpseudocode}               %伪代码中 类似 if...end if去掉end if语句
\renewcommand{\algorithmicrequire}{Input:}
\renewcommand{\algorithmicensure}{Output:}
\renewcommand{\algorithmiccomment}[1]{// #1}    %C语言的注释格式\bibliographystyle{IEEEtran}                   %引用文献格式
\usepackage[numbers, sort & compress]{natbib}\usepackage{soul}                              %高亮显示,为提高本文可读性而添加,实际论文不需要该包\begin{document}
\title{This is a Sample}
\author{Qiuqiu Qiu$^\S$,San Zhang$^\S{}^{*}$\\
$^\S$School of Electrical Engineering \& Intelligentization, University\\
}
\maketitle  \begin{abstract}Here is the abstract of this paper \cite{blaum1993new}.\\Here is the abstract of this paper \footnote{content of footnote}....
\end{abstract}\begin{IEEEkeywords}keyword1, keyword2, ..., last keyword.
\end{IEEEkeywords}\hl{The main body of the paper:}              %\hl{} 为高亮显示,实际论文无需此项
\section{section 1}
Here is the section 1,usually an introduction.The second paragraph of this section.\\       %空一行表示分段,\\表示换行
The third paragraph of this section.
\section{section 2}
Here is the section 2.
\subsection{subsection 1}
Here is the subsection 1 of section 2.
\subsection{subsection 2}
Here is the subsection 2 of section 2.\\
...
\section{section 3}
Here is the section 3.
\subsection{subsection 1}
Here is the subsection 1 of section 3.
\subsection{subsection 2}
Here is the subsection 2 of section 3.\\
...
\section{section 4}
Here is the section 4.\section{last section}
Here is the last section,usually an conclusion.\\\hl{Here are the common formulas:}  \hl{Common characters:}$p$,  $\mathcal{C}(p,n,r)$, $\mathbb{F}_2[x]/M_p(x)$\\          %注意此处的 F
$M_p(x)=1+x+\cdots+x^{p-1} \:(\bmod\: 1+x^p)$\\                %居中的点,_下标,^上标
$N_p(x)=1+x+\ldots+x^{p-1}$\\                                   %靠下的点$[c_{i,j}]_{i=0,j=0}^{p-2,n-1},c_[i,j]\in \mathbb{F}_2,n\leq p$\\   % \in 属于,\leq 小于等于 $c_j(x) = \sum\nolimits_{i=0}^{p-2}c_{i,j}x^i$(i.e., $c_0(x) = c_{0,0} + c_{1,0}x + c_{2,0}x^2+ \ldots + c_{n-2,0}x^{n-2}$)\\\hl{Matrix:}\\
\textbf{Matrix multiplication:}
\[
\mathbf{H}_{r \times n} \cdot           % 注意区分 \cdot 和 \cdots
\begin{bmatrix}c_0(x) & c_1(x) & \cdots & c_{n-1}(x)
\end{bmatrix}^T = \mathbf{0}^T,
\]
\textbf{A Matrix:}
\[
\left[ \begin{array} {c|c}
\mathbf{I}_{\lambda - \ell - 1} & \mathbf{0}  \\ \hline
\mathbf{0} &
\begin{smallmatrix}
\\
1 & 0 & \cdots & 0 & 0 \\
1 & x_{\lambda -\ell}+x_{\lambda - \ell -1} & \cdots & 0 & 0 \\
\vdots & \vdots & \ddots & \vdots & \vdots \\
0 & 0 & \cdots & x_{\lambda-2}+x_{\lambda-\ell-1} & 0 \\
0 & 0 & \cdots & 1 & x_{\lambda-1}+x_{\lambda - \ell - 1}
\end{smallmatrix}
\end{array}
\right],
\]
\textbf{Matrix and equation with number:}
\begin{equation}                        %带编号的等式所需环境\mathbf{H}_{r \times n} = \begin{bmatrix}1 & 1 & 1 & \cdots & 1 \\1 & x & x^2 & \cdots & x^{n-1} \\\vdots & \vdots & \vdots & \ddots & \vdots \\1 & x^{r-1} & x^{2(r-1)} & \cdots & x^{(n-1)(r-1)}\end{bmatrix}
\end{equation}\begin{equation} \sum\limits_{j=0}^{n-1}c_{m-j \cdot \ell, j} =0,
\end{equation}where $0 < m \le p-1$ and $r-1 > \ell \ge 0$,       %实际条件并非如此,且第二个范围理应也写作小于等于,为熟悉这四个符号而写作此
\begin{equation} \prod\nolimits_{j=0}^{n-1}c_{m-j \cdot \ell, j} =0, \nonumber     % 不加编号% \limits表示上下标位于\sum符号的上方和下方;\nolimits表示上下标位于符号右边的上方和下方
\end{equation}
\hl{The above equation is used to display ``prod" and the differences between ``limits" and ``nolimits".}
\begin{equation}\label{fastdivision}                %赋予公式标签名,便于后文\eqref引用(1+x^d)g(x)=f(x)(\bmod 1+x^p).
\end{equation}\hl{Lemma:}
\begin{ownlemma}\cite[lemma 8]{hou2017new} \label{FastDivision} The coefficients of $g(x)$ in Eq.~\eqref{fastdivision} is given by      %对应上文标签\begin{eqnarray}                     %多个公式对齐环境g_{p-1} & = & 0;\label{rectify}\\g_{p-d-1}&=&f_{p-1}; \nonumber \\g_{d-1}&=&f_{d-1}; \nonumber \\g_{p-(i+1)d-1} &=& g_{p-id-1} + f_{p-id-1},\:i=1,2,\cdots,p-3. \nonumber\end{eqnarray}
\end{ownlemma}
By Lemma \ref{FastDivision}, the \hl{division} $\frac{f(x)}{1+x^d}$ takes $p-3$ XORs.\\\hl{Example:}\textbf{Example 1:} Suppose that $S(z)=(1+x^2)+(x^3+x^4)z$ and $R(z)=1-xz$,
we can compute that $Q(z)=R(z)S(z)=(1-xz)S(z)\bmod(1+x^5)$ as follows,
\begin{align*}                              %多行公式对齐
Q(z)=&(1-xz)S(z)=S(z)-xzS(z)\\
=&(1+x^2) +(x+x^4)z + (1+x^4)z^2 \bmod(1+x^5).
\end{align*}\hl{big brace}
\begin{equation}\label{sum207} f_{\ell}(x)=\biggr \{\begin{aligned}&Q_0(x), &\ell=0; \\&x^{e_i}f_{\ell-1}(x) + Q_{\ell}(x), &\ell>0;\end{aligned}
\end{equation}\newpage                          %分页
\hl{algorithm}
\begin{algorithm}[h]\caption{Name of Algorithm}\begin{algorithmic}[1]\Require Input of this algorithm.\For{$\ell \leftarrow a$ to $b$}\State equation 1             %\State 换行\EndFor\State $\cdots$\Ensure output of this algorithm.\end{algorithmic}\label{alg:syn}
\end{algorithm}\hl{table:}\begin{table}[h]\caption {Name of this table}\centering                   %居中\begin{tabular}{ccccccccc}   %有几个c就有几列\toprule    %表头粗线\multirow{2}{*}{} &       %该单元格由2个垂直单元格合并而来,值为空\multicolumn{8}{c}{\textbf{The following table should add \textbackslash \ before input}} \\    %该单元格由2-9的8个水平单元格合并而来,值为最后一个括号内的内容    \cline{2-9}                %第2-9列画线& input1 & output1 && input2 & output2 && input3 & output3\\ \hline                         %画线1 & \{ & \{ && \} & \} && \% & \%\\      % 用 & 分隔相邻的两个单元格,&&中间含一个空单元格2 & dag &\dag && S & \S && ddag & \ddag\\3 & copyright & \copyright && pounds & \pounds && P & \P\\4 & dots & \dots \\\bottomrule                %表底粗线\end{tabular}
\end{table}% \begin{table}[h]
%     \caption {\textbf{Greek letters}}
%     \text{which should  add \$\textbackslash \ before input and \$ after input}
%     \centering
%     \begin{tabular}{cccccc}
%         \toprule
%         & input1 & output1 && input2 & output2 \\
%         \hline
%         1 & alpha & $\alpha$ && xi & $\xi$\\
%         2 &beta & $\beta$ && o & $\o$ \\
%         3 & theta & $\theta$ && vartheta & $\vartheta$\\
%         4 & delta & $\delta$ && iota & $\iota$\\
%         5 & zeta & $\zeta$ && eta & $\eta$\\
%         6 & gamma & $\gamma$ && tau & $\tau$\\
%         7 & sigma & $\sigma$ && varsigma & $\varsigma$\\
%         8 & lambda & $\lambda$ && kappa & $\kappa$\\
%         9 & omega & $\omega$ && upsilon & $\upsilon$\\
%         10 & pi & $\pi$ && varpi & $\varpi$\\
%         11 & mu & $\mu$ && nu & $\nu$\\%
%         12 & rho & $\rho$ && varrho & $\varrho$\\
%         13 & phi & $\phi$ && varphi & $\varphi$ \\
%         14 & psi & $\psi$ && chi & $\chi$\\
%         15 & epsilon & $\epsilon$ && varepsilon & $\varepsilon$\\
%         16 & Gamma & $\Gamma$ && Lambda & $\Lambda$ \\
%         17 & Psi & $\Psi$ && Sigma & $\Sigma$\\
%         18 & Delta & $\Delta$ && Xi & $\Xi$\\
%         19 & Upsilon & $\Upsilon$ && Omega & $\Omega$ \\
%         20 & Pi & $\Pi$ && Theta & $\Theta$\\
%         21 & Phi & $\Phi$\\
%         22 & varGamma & $\varGamma$ && varLambda & $\varLambda$ \\
%         23 & varPsi & $\varPsi$ && varSigma & $\varSigma$\\
%         24 & varDelta & $\varDelta$ && varXi & $\varXi$\\
%         25 & varUpsilon & $\varUpsilon$ && varOmega & $\varOmega$ \\
%         26 & varPi & $\varPi$ && varTheta & $\varTheta$\\
%         27 & varPhi & $\varPhi$\\
%         \bottomrule
%     \end{tabular}
% \end{table}% \begin{table}[h]
%     \caption {\textbf{Binary relation symbols }}
%     \text{which should add \textbackslash \ before input  and  two \$ except $>,<,:$ and $=$}
%     \centering      %居中
%     \begin{tabular}{cccccc}  %有几个c就有几列
%         \toprule    %表头粗线%         & input1 & output1 && input2 & output2\\ %         \hline     %画线
%         1 & $<$ & $<$ && $>$ & $>$ \\
%         2 & : & $:$ && = & $=$\\
%         3 & leq or le & $\le$ && geq or ge & $\geq$ \\
%         4 & ll & $\ll$ && gg & $\gg$\\
%         5 & prec & $\prec$ && succ & $\succ$ \\
%         6 & preceq & $\preceq$ && succeq & $\succeq$ \\
%         7 & subset & $\subset$ && supset & $\supset$\\
%         8 & subseteq & $\subseteq$ && supseteq & $\supseteq$ \\
%         9 & sqsubset & $\sqsubset$ && sqsupset & $\sqsupset$ \\
%         10 & sqsubseteq & $\sqsubseteq$ && sqsupseteq & $\sqsupseteq$ \\
%         11 & propto & $\propto$&& models & $\models$\\
%         12 & in & $\in$ && ni or owns & $\owns$ \\
%         13 & vdash & $\vdash$ && dashv & $\dashv$ \\
%         14 & mid & $\mid$ && parallel & $\parallel$ \\
%         15 & perp & $\perp$&& asymp & $\asymp$\\
%         16 & smile & $\smile$ && frown & $\frown$ \\
%         17 & equiv & $\equiv$ && doteq & $\doteq$\\
%         18 & sim & $\sim$&& simeq & $\simeq$\\
%         19 & approx & $\approx$&& cong & $\cong$\\
%         20 & Join & $\Join$&& bowtie & $\bowtie$\\
%         21 & notin & $\notin$ && neq or ne & $\neq$\\%         \bottomrule     %表底粗线
%     \end{tabular}
% \end{table}% \begin{table}[h]
%     \caption {\textbf{Binary operations symbols }}
%     \text{which should add \textbackslash \ before input  and  two \$ except $+,-$}
%     \centering      %居中
%     \begin{tabular}{cccccc}  %有几个c就有几列
%         \toprule    %表头粗线
%         & input1 & output1 && input2 & output2\\
%         \hline     %画线
%     1 & + & $+$ && - & $-$\\
%     2 & pm & $\pm$ && mp & $\mp$\\
%     3 & cdot & $\cdot$ && div & $\div$ \\
%     4 & times & $\times$ && setminus & $\setminus$ \\
%     5 & cup & $\cup$ && cap & $\cap$ \\
%     6 & sqcup & $\sqcup$ && sqcap & $\sqcap$ \\
%     7 & vee or lor & $\vee$ && wedge or land & $\land$ \\
%     8 & circ & $\circ$&& bullet & $\bullet$\\
%     9 & oplus & $\oplus$ && ominus & $\ominus$ \\
%     10 & odot & $\odot$ && oslash & $\oslash$ \\
%     11 & diamond & $\diamond$&& uplus & $\uplus$\\
%     12 & otimes & $\otimes$ && bigcirc & $\bigcirc$ \\
%     13 & star & $\star$ && ast & $\ast$\\
%     14 & triangleleft & $\triangleleft$&& triangleright & $\triangleright$\\
%     15 & lhd & $\lhd$ && rhd & $\rhd$ \\
%     16 & bigtriangleup & $\bigtriangleup$ && bigtriangledown & $\bigtriangledown$ \\
%     17 & unlhd & $\unlhd$ && unrhd & $\unrhd$ \\
%     18 & dagger & $\dagger$ && ddagger & $\ddagger$\\
%     19 & amalg & $\amalg$ && wr & $\wr$\\
%     \bottomrule     %表底粗线
%     \end{tabular}
% \end{table}\bibliography{quote}
\end{document}

7.2 .bib文件

@article{blaum1993new,title={{New Array Codes for Multiple Phased Burst Correction}},author={Blaum, Mario and Roth, Ron M},journal={IEEE Transactions on Information Theory},volume={39},number={1},pages={66--77},year={1993},publisher={IEEE}
}@inproceedings{hou2014,title={{New MDS Array Code Correcting Multiple Disk Failures}},author={Hou, Hanxu and Shum, Kenneth W and Chen, Minghua and Li, Hui},booktitle=GLOBECOM,pages={2369--2374},year={2014}
}

8. 附录——符号

本小节摘自《一份不太简短的LaTex2e介绍》

  1. 蓝色的命令依赖 amsmath 宏包(非 amssymb 宏包);
  2. 带有角标 ℓ 的符号命令依赖 latexsym 宏包。

8.1 通用符号

8.2 希腊字母

8.3 二元关系符

8.4 二元运算符

8.5 巨算符

8.6 数学重音符号

最后一个 \wideparen 依赖 yhmath 宏包。

8.7 箭头

8.8 作为重音的箭头符号

8.9 定界符

8.10 用于行间公式的大定界符

8.11 其他符号

9. 补充

9.1 作者信息

默认此时已经装有texlive
win + r ——> cmd ——> 输入“texdoc authblk” 查看 authblk 包的用法,该包内讲述作者信息写法。

Latex + IEEEtran模板 + 样例 + 数学符号表相关推荐

  1. 浙江大学计算机学院博士论文格式,博士学位论文格式模板(浙江大学博士论文模板样例)...

    博士学位论文格式模板(浙江大学博士论文模板样例  密级:    博  士  学  位  论  文 论文题目  [博士论文标题] 作者姓名        [作者] 指导教师        [导师] 教授 ...

  2. latex作业模板_初中数学教师的latex笔记[1] | 教案模板

    以下是自己用latex写教案时用的模板, 不够全面, 希望可以提供给有需要的朋友吧. 教案模板 documentclass[a4paper,openright, twoside]{ctexart} u ...

  3. Texlive: latex数学符号表

    http://zh.wikipedia.org/wiki/Help:MATH 函数.符号及特殊字符 声调 语法 效果 语法 效果 语法 效果 \bar{x} \acute{\eta} \check{\ ...

  4. Latex 数学符号表

    转载于:https://www.cnblogs.com/joyfulphysics/p/5177101.html

  5. LaTex常用数学符号表

    参考资料:LaTex90分钟快速入门

  6. 2021-08-22 愿景和范围文档模板样例

    2021-08-22 今日学习,愿景和范围文档模板 编写愿景和范围文档模板,包含3大主题:业务需求.范围和限制.业务环境 业务需求 1.1 项目背景 简述项目所产生的依据.背景,是市场驱动.技术驱动还 ...

  7. [模板] ReadMe 模板样例

    XXX ReadMe.md 1.XXX 说明 XXX是用于XXX(定位/功能) 其主要功能为XXX 2.XXX 安装运行要求 (1)运行前提条件 List item (2)项目运行步骤 List it ...

  8. 下载Excel模板样例。

    1.首先查询出数据库的数据转化成json格式 如:String totalJson = paymentDayRptService.queryPayDayRtpForExport(); service层 ...

  9. 计算机cad模板样例,[计算机软件及应用]cad实例.doc

    [计算机软件及应用]cad实例 第三节 矩形,圆.正多边形,构造线 例1 1选取圆(C)绘制直径为140的圆 2捕捉圆心绘制直径为170的圆 3绘制直径为200的圆 4捕捉象限点绘制4个直径为10的圆 ...

  10. Latex里一些特殊的数学符号

    花体 \mathcal L\mathcal LL: \mathcal L 常用来表示损失函数 D\mathcal DD: \mathcal D 常用来表示样本集 N\mathcal NN: 常用来表示 ...

最新文章

  1. Linux(11)-Linux系统下用户权限管理
  2. Linux入门:部署JavaWeb项目
  3. Linux面试最常见的5个基本问题
  4. 全球及中国偶联单克隆抗体行业深度调研及项目风险评估报告2021-2027年
  5. 最好js代码验证×××号码
  6. css_04 | CSS——CSS 值和单位
  7. Style transfer系列论文之——Arbitrary Style Transfer in Real-time with Adaptive Instance Normali,ICCV, 2017
  8. 浅析MyBatis执行器原理
  9. JAVA项目实战开发电商项目案例(一)前后端项目分离
  10. windows动态ip和静态ip的bat文件
  11. xml转matlab目标检测,将Cityscape转换为PASACAL VOC格式的目标检测数据集
  12. 中科大自主招生2018年笔试数学之二
  13. 腾讯云容器安全已支持检测Apache Log4j2漏洞
  14. 全球首款机场专用自动驾驶纯电动大巴在东京实地测试
  15. 看看你的骂人水平是几段?
  16. python adb读取手机中短信_python+adb实现自动化获取手机信息
  17. 大数据战略上升为国家战略,悄悄告诉你大数据大牛都在读的8本书
  18. 如何读取环境变量值?Go 每日一库之 godotenv
  19. 揭秘家用路由器0day漏洞挖掘技术读书笔记 D-Link DIR-645 authentication.cgi溢出漏洞分析
  20. Surface重装系统

热门文章

  1. 如何将PPT进行压缩?PPT压缩的方法是什么
  2. DeepFaceLab:手动提取高精度脸图,减少抖动!
  3. 伍斯特理工学院计算机,世界排名领先,伍斯特理工学院到底有多厉害?
  4. markdown表情大全
  5. matlab 不见了,matlab命令窗口不见了
  6. 计算机网络名怎么解决,指定的网络名不再可用怎么办解决教程
  7. ansys静态结构分析
  8. redis通过key模糊搜索_Redis中关于Key的模糊查找
  9. python空气质量等级判断_空气质量等级的判定
  10. c语言 牛顿方法计算平方根,sqrt()平方根计算函数的实现2——牛顿迭代法