我是靠谱客的博主 爱听歌外套,最近开发中收集的这篇文章主要介绍IEEE期刊模板的使用Templates for Transactions (Latex and word),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

模板下载地址:

https://journals.ieeeauthorcenter.ieee.org/create-your-ieee-article/authoring-tools-and-templates/ieee-article-templates/

以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}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、最终结果

 

更多《计算机视觉与图形学》知识,可关注下方公众号:
在这里插入图片描述

最后

以上就是爱听歌外套为你收集整理的IEEE期刊模板的使用Templates for Transactions (Latex and word)的全部内容,希望文章能够帮你解决IEEE期刊模板的使用Templates for Transactions (Latex and word)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(61)

评论列表共有 0 条评论

立即
投稿
返回
顶部