赞
踩
\markboth{IEEE TRANSACTIONS ON SIGNAL PROCESSING}%
{Shell \MakeLowercase{\textit{et al.}}: A Sample Article Using IEEEtran.cls for IEEE Journals}
此处,不能注释掉第二行代码,否则不能运行,会报错。
IEEE Transactions 模板脚注为\thanks
,而非\footnotetext
。
\author{San Zhang and Si Li\thanks{Manuscript received February 21, 2022. This work was supported in part by the National Natural Science Foundation of China under Grant 00000000.}
\thanks{San Zhang and Si Li are ****}}
注意,\thanks
必须放在\author
内部,否则会多出一个空白页。
首先添加宏包:
\usepackage{nomencl}
\makenomenclature
之后,在引言之前添加代码:
\nomenclature{TFR}{Time-frequency representation}%
\nomenclature{TF}{Time-frequency}%
\printnomenclature
然后编译程序,会生成一个后缀为nlo的文件,如图
最后,在当前文件夹,
S
h
i
f
t
+
Shift+
Shift+鼠标右键,打开命令窗口,输入以下代码,
makeindex manuscript.nlo -s nomencl.ist -o manuscript.nls
运行上述代码之后,会产生一个后缀为nls的文件,如图:
具体操作时,只需要将
m
a
n
u
s
c
r
i
p
t
manuscript
manuscript换成自己的文件名。如果NOMENCLATURE更新之后,需要重新编译,然后删除nls文件,按照上述代码,重新生成nls文件即可更新。
注意,上述方法为自动排序。若要实现手动排序,可输入如下代码:
\usepackage{nomencl}
\makenomenclature
\renewcommand\nomgroup[1]{\item[\bfseries]}
\nomenclature[2]{TFR}{Time-frequency representation}%
\nomenclature[1]{TF}{Time-frequency}%
方括号内为实际顺序。
添加宏包\usepackage{doi}
,点击数字,即可跳转到参考文献。
上述现象是由于相同作者的两篇参考文献相邻引用,最简单有效的方法是,在相同作者的两篇参考文献之间插入其他的参考文献即可解决。或者,在作者名字前加空格,修改代码,具体的方法可以在CSDN上搜索。
某个文献,已被接收,有doi检索号,但是未出版。bib文件内为
@article{zhang2022God,
title={God is the Tao, and the Tao follows nature, the Tathagata},
author={San Zhang and Si Li},
journal={IEEE Transactions on Signal Processing},
year={2022},
note={doi:{11.4129/TSP.2022.0000000}}
}
若公式太长,一行无法显示,可采用多行公式multline
自动对齐,\\
换行.
\begin{multline}
AAAAAAAAAAAAAAA\\
\times BBBBBBBBBBBBBBBB.
\end{multline}
或者,可以减小公式的大小,例如\begin{footnotesize}
.
公式对齐,可以采用\begin{aligned}
, 如果需要给公式标号,则采用在\begin{equation}
去掉
∗
*
∗即可。
\begin{equation*}
\begin{aligned}
W(a,b)
& = a \times b\\
& = x \times y
\end{aligned}
\end{equation*}
在一栏,横着插入两张照片,如图
\begin{figure}[htbp]
\centering
\subfloat[First]{
\includegraphics[width=0.25\textwidth]{1.jpg}
%\caption{fig1}%6.25
}
%quad
\subfloat[Second]{
\includegraphics[width=0.2A5\textwidth]{1.jpg}
%\caption{fig1}%6.25
}
\caption{Figures.}\label{fig2}
\end{figure}
若想要横着插入两张照片,只需要取消\quad
的注释即可。事实上,这还与图片的尺寸有关。
如果需要图片跨越双栏,只需要使用\begin{figure*}
\usepackage{soul} % 导入 soul 包
\usepackage{color, xcolor} % 颜色包,color 必须导入,xcolor 建议导入
% 若高亮 \hl 的结果变成下划线,一般是因为没导入 color
\sethlcolor{green}\hl{这里的内容会被高亮为绿色,并且会自动换行}
上述代码,在高亮内容中不能使用命令\cite{}
,否则报错。加上以下命令即可:
\soulregister{\cite}7 % 注册\cite命令
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。