IEEE期刊论文模板

一、模板下载

1、登陆IEEE作者中心Author Center

地址:Publish with IEEE Journals - IEEE Author Center Journals

2、点击“Download a template”

 3、在弹出的模板下载页面点击IEEE模板选择器“IEEE Template Selector”

 4、在弹出的模板选择器页面点击“Transactions,Journals and Letters”

5、在弹出的页面输入需要查询的期刊名称或在下拉框中选择需要查询的期刊名称

6、在弹出的页面中选择文章类型,论文一般选“Original research and Brief”

7、在弹出的页面选择要下载的模板类型,一般有LaTex或Word两种格式的模板,但也有期刊的只有一种模板

8、在弹出的页面点击“Download Template”,即可完成下载

完成!

二、附录

1、参考文献

下载的压缩文件解压后是这样的(我们用的是bare_jrnl_new_sample4.tex 的 latex模板文件--bare_jrnl是IEEE transactions投稿使用的模板):

bare_jrnl_new_sample4.pdf
bare_jrnl_new_sample4.tex -> latex模板文件
fig1.png
New_IEEEtran_how-to.pdf
New_IEEEtran_how-to.tex

我们发现没有参考文献样式文件,因此需要下载更新IEEEtran.bst文件

下载地址:CTAN: /texarchive/tex-archive/macros/latex/contrib/IEEEtran/bibtex

下载好后和之前的.tex文件放在一起

新建一个.txt文件,把bib格式的引文信息全都复制进去(方法如下),保存后把文件后缀名改为.bib

很多文献管理都有导出到BibTeX的选项,如果没有,也可以使用谷歌学术

上面那个li2020above和pastor1984biomass可以改成你喜欢的名字,在文献里面引用就 \cite{li2020above}
粘贴完记得保存为xxx.bib文件(比如reference.bib)

改一下代码里面的引文方式


把这一大段
\begin{thebibliography}{1}
...
\end{thebibliography}

替换为这两行
\bibliographystyle{IEEEtran}
\bibliography{reference} 
% 上面这个reference是bib的文件名
% 如果是xxx.bib就改成\bibliography{xxx} 

在文内需要引用的地方就输入\cite{文献id},点一下生成预览就能看到效果

2、IEEE的图片、表格、公式

需要注意IEEE的模板要在指定的位置放\label{...},具体细节如下:

1)图片

把图片文件放到与.tex同目录下


在文内插入图片的例子:
\begin{figure}[!t] 
	\centering
	\includegraphics[width=3.5in]{图片文件名} % 3.5in是图片宽度,按需改
	\caption{图片文本描述}
	\label{图片id}
\end{figure}
% 若要两栏变单栏改成\begin{figure*} ... \end{figure*}

一个文内引用图片的例子:
Fig. \ref{图片id} shows the important region in the input image ...

2)表格

在Excel填好数值后,复制到Table Generator生成表格代码,然后修改塞到下面的模板中


一个表格例子:
\begin{table}[!t]
	\caption{表格描述\label{tab:表格id}}
	\centering
	\begin{tabular}{...}
	...
	\end{tabular}
\end{table}
% 若要两栏变单栏改成\begin{table*} ... \end{table*}

一个文内引用表格的例子:
In Table \ref{tab:表格id}, we compare the impacts of ...

3)公式

推荐好用的LaTeX公式编辑器


一个公式例子:
\begin{equation}
	\label{公式id}
	R_{exp}(f)=E(f(x),y)=\int \ell(f(x),y) \mathrm{d}P(x,y)
\end{equation}

一个文内引用公式的例子:
Following (\ref{公式id}), we obtain the equation ...

还有一种就是行内公式,行内公式写作$公式内容$,通常没有尾标数字,可以放在行内

一个行内公式例子:
Sample two data pairs, $(x_a,y_a )$ and $(x_b,y_b )$, from the training set $D$.

4)作者和单位信息修改

参考这篇博客


我用的一个模板:
\author{\IEEEauthorblockN{
		一作,
		二作\IEEEauthorrefmark{1}, % 星号代码,改变后面的数就有不同样式符号
		三作,
		...
	}
	\IEEEauthorblockA{单位\\
		\IEEEauthorrefmark{1} Correspondence: 邮箱号,}}

5)IEEE模板中的一些解释

开头设置,包括文档类型,字号,所使用的工具包等

\documentclass[10pt,journal,final]{IEEEtran}%我们使用的是IEEEtran风格的外部模板,还有一些内置的article等,方括号的是参数,包括字号,期刊类型,所用模板是双列
 
%接下来我们在图片、表格、公式等的编辑中,需要用usepackage导入一些package,就类似于python或C++中包的import和include吧。
\usepackage{multirow} %关于表格
\usepackage{booktabs}
\usepackage{makecell}
 
\usepackage{cite}%参考文献
\usepackage{graphicx}%图片
\graphicspath{{./figures/}}%说明待加载的图片的路径,在后期图片加载的时候不用再写路径,直接用图片名称
  
\usepackage{amsmath}%公式
\interdisplaylinepenalty=2500
 
% 子图设置
\ifCLASSOPTIONcompsoc
\usepackage[caption=false,font=normalsize,labelfont=sf,textfont=sf]{subfig}
\else
\usepackage[caption=false,font=footnotesize]{subfig}
\fi
 
% correct bad hyphenation here
\hyphenation{op-tical net-works semi-conduc-tor}

正文开始,正文内容包含在

\begin{document} ...  \end{document}

之间,并把相应的文字填到对应的部分,如摘要,引言等,Section,subsection和subsubsection分别是一、二和三级标题,并展示list的应用,如下。

\begin{document}
%正文开始,把文字填到相应的部分
\title{learning LaTeX}
\author{Hong~Xiao  }
 
\maketitle
\begin{abstract}
As recently as last week, Trump was calling outside advisers to complain about Bolton, people familiar with the conversations said. 
\end{abstract}
 
\begin{IEEEkeywords}
latex
\end{IEEEkeywords}
 
\IEEEpeerreviewmaketitle
 
 
\section{Primary title}%一级标题
Washington (CNN)President Donald Trump has become irritated at an emerging impression his hawkish national security advisers are marching him closer to war with Iran despite his isolationist tendencies, according to people familiar with the matter.
 
%另起一段,回车,空一行
Instead, Trump is signaling his intent to speak with the Iranians as tensions rise in the Persian Gulf, and his national security team has taken steps they hope could facilitate a new diplomatic opening.
 
\subsection{The secondary title}%二级标题
The likelihood of such an opening appears slim. But Trump has raised concern with the heightened rhetoric, believing a large-scale military intervention with Iran would be devastating to him politically, people familiar with the situation said.
 
\subsubsection{The secondary title}%三级标题
 The President has told members of his team that starting a new conflict would amount to breaking his campaign promise to wind down foreign entanglements. And he's chafed at suggestions his aides, led by national security adviser John Bolton, are somehow leading him to war.
\subsection{show list}%列表展示
\begin{enumerate}[\IEEEsetlabelwidth{4)}]%4个条目
	\item AAAAAA.
	\item BBBBBBBBBBBB. 
	\item CCCCCCCCCC.
	\item DDDDDDDDDDDDDDDDDDDDDDD.
	
\end{enumerate}

图片写好路径之后,根据名称加载,图片存放在当前目录的figures文件夹下。在模板中不用管图片的位置,会自动根据文字以及图片大小调整。label仅仅用于图片在正文中的引用,采用Fig. \ ref { XX },其中XX是label名称,fig1,fig2,fig3,在引用中,诸如Fig. 和Tabel.的字眼需要手动添加,而 \ ref { XX }只是一个图片的编号,根据在.tex文件中出现的顺序自动编号,所以不用担心图片位置的变化而要改变编号,并且它会自动根据模板风格选择阿拉伯数字或是罗马数字。label会在texstudio的标签中显示,如图。

%图片展示,在模板中不用管图片的位置,会自动根据文字以及图片大小调整
%figure是双栏的图片排版
\begin{figure}[!t]
	\centering %居中
	\includegraphics[scale=1]{2.jpg}%图片大小及加载的图片名称			
	\caption{show single picture.}%图片标题
	\label{fig1}%标注该图片,用于在文章内引用
\end{figure} 
 
%figure*是单栏的图片排版,用于大图片,双栏中放不下的
\begin{figure*}[!t]
	\centering
	\includegraphics[width=6in]{3.jpg}%
	\caption{Sample images of highway test dataset.}
	\label{fig2}
\end{figure*}
 
%多子图的情况
\begin{figure*}[!t]
	\centering
	\subfloat[first]{\includegraphics[width=4in]{2.jpg}
	}
	\hfil
	\subfloat[second]{\includegraphics[width=3in]{2.jpg}
	}
	\hfil\hfil
	\subfloat[third]{\includegraphics[width=5in]{2.jpg}
	}
	\hfil
	\subfloat[ fourth]{\includegraphics[width=2in]{2.jpg}
	}
	
	\caption{multiple features}
	\label{fig3}
\end{figure*}

表格的具体使用请参考其他详细资料。用LaTeX写简单表格比较容易,但是大型表格比较麻烦,因此可用参考LaTeX插入表格 - 简书,用网页在线转换器(Create LaTeX tables online – TablesGenerator.com)将可视化表格转换成LaTeX代码,将代码复制到相应位置,非常好用。

\begin{table}[!t]
	\renewcommand{\arraystretch}{1.3}
	\caption{show tabel.}%标注该表格,用于在文章内引用
	\label{table1}
	\centering
	\begin{tabular}{ccccc}
		\toprule	
		A & \multicolumn{3}{c}{B}  \\
		\cmidrule{2-4}
		& C & C2 & 3 \\	
		\midrule
		a1 & 0.4 & 0.9 & 0.8 \\
		a2 & 0.1 & 0.1& 0.9 \\
		a3 & 0.5 & 0.0& 0.5 \\
		a4 & 0.7 & 0.7& 0.7 \\
		
		\bottomrule
	\end{tabular}
\end{table}

公式具体使用请参考其他详细资料。

%行内公式,用$$包围
The $A_{1}=B+C(\dfrac{a}{a\log b})$President has told members of his team that starting a new conflict would amount to breaking his campaign promise to wind do.
 
%行间公式,公式文字内不好放的时候
\begin{equation}
A_{1}=B+C(\dfrac{a}{a\log b})
\end{equation}
o breaking his
 
%行间多行公式共用一个编号
\begin{equation}
\begin{aligned}	
A_{1}=B+C(\dfrac{a}{a\log b})\\
A_{1}=B+C(\dfrac{a}{a\log b})
\end{aligned}
\end{equation}
 
%一行太长写不下,一般在等号或加号出换行
o breaking his
\begin{multline}
A_{1}=B+C(\dfrac{a}{a\log b})+C(\dfrac{a}{a\log b})-C(\dfrac{a}{a\log b})+C(\dfrac{a}{a\log b})\\
=C(\dfrac{a}{a\log b})+C(\dfrac{a}{a\log b})+C(\dfrac{a}{a\log b})\\
=C(\dfrac{a}{a\log b})
\end{multline}

结合BibTeX自动导入并引用参考文献,首先在test_main.tex所处文件下存放一个BibTeX文件,命名为reference,即reference.bib,可从谷歌学术等地方导入参考文章的BibTXT,并复制到reference中。通过以下的方式自动加载,然后就可以直接引用参考文献了,用\cite{XX},XX是.bib文件中article后面的内容,如下图所示。

\bibliographystyle{IEEEtran}%这里选择的是IEEEtran,还可以选择不同的分风格
 
\bibliography{reference}%导入BibTeX.bib,然后就可以直接引用参考文献了,用\cite{XX},XX是.bib文件中article后面的内容,如上所示
 
%引用参考文献
members of\cite{olson1999nutrition} his team that starting a new conflict would amount to breaking his campaign promise\cite{townsend2001food} to winstarting a new conflict would amount to breaking his\cite{olson1999nutrition}.

  • 7
    点赞
  • 48
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
IEEE Trans期刊模板是一种规范格式,用于论文在IEEE Trans期刊上的投稿和出版。该模板提供了一个标准的排版样式,确保论文在出版过程中的一致性和可读性。 IEEE Trans期刊模板的主要特点包括以下几个方面: 1. 标准格式:该模板将论文组织分为标题、作者、摘要、引言、方法、实验结果、讨论和结论等部分,每个部分都有特定的格式和要求。这种标准格式使得读者可以更轻松地找到他们感兴趣的内容。 2. 引用格式:IEEE Trans期刊模板使用了一种标准的引用格式,能够使读者追踪到相关的参考文献,并了解到更多的背景信息。 3. 图表格式:该模板为插入图表提供了具体的要求。如图表应该有标题,并且需要进行编号和标签,以便读者能够在文中引用并了解其内容。 4. 数学公式:IEEE Trans期刊模板提供了一套规范的数学公式写作指南,确保公式的层次结构清晰,易于阅读。 5. 参考文献:对于参考文献的格式和排列,IEEE Trans期刊模板提供了详细的指导。这使得读者可以方便地找到相关文献,并且为作者和读者之间建立了相互引用的桥梁。 总而言之,IEEE Trans期刊模板是一种非常实用的工具,它为作者提供了一个统一的格式和排版样式,并且为读者提供了更好的阅读体验。使用该模板可以提高论文的质量和可读性,并与其他相关研究进行更好的对比和理解。因此,合理使用IEEE Trans期刊模板对于在IEEE Trans期刊上发表高质量论文是非常重要的。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

清纯世纪

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值