新网站一直不被收录,广东商城网站建设,北京传媒公司,微信支付 网站开发一、模板下载
1、登陆IEEE作者中心Author Center
地址#xff1a;Publish with IEEE Journals - IEEE Author Center Journals
2、点击“Download a template” 3、在弹出的模板下载页面点击IEEE模板选择器“IEEE Template Selector” 4、在弹出的模板选择器页面点击“Tran…一、模板下载
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[width3.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: 邮箱号,}}
5IEEE模板中的一些解释
开头设置包括文档类型字号所使用的工具包等
\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}%公式
\interdisplaylinepenalty2500% 子图设置
\ifCLASSOPTIONcompsoc
\usepackage[captionfalse,fontnormalsize,labelfontsf,textfontsf]{subfig}
\else
\usepackage[captionfalse,fontfootnotesize]{subfig}
\fi% correct bad hyphenation here
\hyphenation{op-tical net-works semi-conduc-tor}
正文开始正文内容包含在
\begin{document} ... \end{document}
之间并把相应的文字填到对应的部分如摘要引言等Sectionsubsection和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 hes 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名称fig1fig2fig3在引用中诸如Fig. 和Tabel.的字眼需要手动添加而 \ ref { XX }只是一个图片的编号根据在.tex文件中出现的顺序自动编号所以不用担心图片位置的变化而要改变编号并且它会自动根据模板风格选择阿拉伯数字或是罗马数字。label会在texstudio的标签中显示如图。
%图片展示在模板中不用管图片的位置会自动根据文字以及图片大小调整
%figure是双栏的图片排版
\begin{figure}[!t]\centering %居中\includegraphics[scale1]{2.jpg}%图片大小及加载的图片名称 \caption{show single picture.}%图片标题\label{fig1}%标注该图片用于在文章内引用
\end{figure} %figure*是单栏的图片排版用于大图片双栏中放不下的
\begin{figure*}[!t]\centering\includegraphics[width6in]{3.jpg}%\caption{Sample images of highway test dataset.}\label{fig2}
\end{figure*}%多子图的情况
\begin{figure*}[!t]\centering\subfloat[first]{\includegraphics[width4in]{2.jpg}}\hfil\subfloat[second]{\includegraphics[width3in]{2.jpg}}\hfil\hfil\subfloat[third]{\includegraphics[width5in]{2.jpg}}\hfil\subfloat[ fourth]{\includegraphics[width2in]{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 \\ \midrulea1 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}BC(\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}BC(\dfrac{a}{a\log b})
\end{equation}
o breaking his%行间多行公式共用一个编号
\begin{equation}
\begin{aligned}
A_{1}BC(\dfrac{a}{a\log b})\\
A_{1}BC(\dfrac{a}{a\log b})
\end{aligned}
\end{equation}%一行太长写不下一般在等号或加号出换行
o breaking his
\begin{multline}
A_{1}BC(\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}.