首页 > 编程知识 正文

ieee期刊的模板,ieee如何搜索期刊模板

时间:2023-05-04 11:59:32 阅读:259375 作者:556

模板下载地址:

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]centeringincludegraphics[width=8cm,height=5cm]{images/sunset.JPG}caption{Picture illustration(1).}label{fig1}end{figure}begin{figure*}[t!]centeringincludegraphics[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}sumlimits_{j = 1}^D {||y(j) - sumlimits_{k = 1}^K {h_k^{rm T}{x_k}[Delta {tau _j}]} ||_2^2} + frac{lambda }{2}sumlimits_{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: paper1cite{Bolme2010Visual}, paper2cite{Danelljan2014Adaptive}.bibliographystyle{IEEEtran}bibliography{mybibfile}

 3、最终结果

版权声明:该文观点仅代表作者本人。处理文章:请发送邮件至 三1五14八八95#扣扣.com 举报,一经查实,本站将立刻删除。