模板下载地址:
IEEE Article Templates – IEEE Author Center Journals
以Transactions系列期刊为例,
下载文章LaTeX模板WIN or MAC LaTeX2e Transactions Style File
下载参考文献Bibliography模板Transactions WIN and MAC Bibliography File
模板解压后文件如下:
他们的作用分别是:
IEEEtran.cls - IEEEtran LaTeX class文件.
IEEEtran_HOWTO.pdf - 用户手册.
bare_conf.tex - 会议文章模板.
bare_conf_compsoc.tex - 特殊会议模板for IEEE Computer Society conference papers.
bare_jrnl.tex - 正常期刊模板(这个一般就是我们要用的Trans期刊模板).
bare_jrnl_comsoc.tex - 特殊期刊模板for IEEE Communications Society journal papers.
bare_jrnl_compsoc.tex - 特殊期刊模板for IEEE Computer Society journal papers.
bare_jrnl_transmag.tex - 特殊期刊模板for IEEE Transactions on Magnetics journal papers.
bare_adv.tex - 一个先进的demo模板of IEEEtran.cls for IEEE Computer Society Journals.
1、添加图片
在文档首添加库文件
\usepackage{graphicx}
\usepackage{subfigure} % support sub-figure
代码 (图一半栏显示,图二全栏显示)
\subsection{Add Pictures}
\begin{figure}[!ht]\centering\includegraphics[width=8cm,height=5cm]{images/sunset.JPG}\caption{Picture illustration(1).}\label{fig1}
\end{figure}
\begin{figure*}[t!]\centering\includegraphics[width=8cm,height=5cm]{images/sunset.JPG}\caption{Picture illustration(2).}\label{fig2}
\end{figure*}
2、添加公式
(1)在mathtype中编辑好:
(2)预设->复制和剪切预设
(3)到latex中粘贴(注意:粘贴的时候删除最外侧的中括号)
\subsubsection{Add Equations}
\begin{equation}
E(h) = \frac{1}{2}\sum\limits_{j = 1}^D {||y(j) - \sum\limits_{k = 1}^K {h_k^{\rm T}{x_k}[\Delta {\tau _j}]} ||_2^2} + \frac{\lambda }{2}\sum\limits_{k = 1}^K {||{h_k}||_2^2}
\label{eq1}
\end{equation}
3、添加参考文献
以引用“Visual object tracking using adaptive correlation filters”为例
(1)百度学术这这篇文章,点击引用
(2)点击BibTeX
(3)Ctrl+A全选所有内容,然后Ctrl+C复制。
(4)在latex工程目录下,用记事本新建mybibfile.bib文件,将复制的内容粘贴到该文件中,我们在文章中就可以用\cite{Bolme2010Visual}来引用这篇文献了(第二篇文章与第一篇文章做法一样,注意:有特殊字符需要使用转义字符的形式)
(5) 打开我们下载的Bibligraphy库文件,将IEEEtran.bst拷贝到LaTeX工程目录
(6) LaTeX中添加
\subsubsection{Add Citations}
Here are two sample references: paper1\cite{Bolme2010Visual}, paper2\cite{Danelljan2014Adaptive}.\bibliographystyle{IEEEtran}
\bibliography{mybibfile}
3、最终结果