大家好,欢迎来到IT知识分享网。
官网要求:
https://www.sciencedirect.com/journal/neurocomputing/publish/guide-for-authors
模板下载链接:
LaTeX template (ctan.org)
具体实现:
1.排版
(1)工具:使用overleaf进行排版
具体操作步骤如下:
(2)内容排版:
.tex文件可任选一个进行论文排版,区别在于参考文献的排版格式不同。
以elsarticle-template-num.tex为例,打开文件编写内容。
a)文档说明:
若是想要版面宽大,选取31行的文档设置。
常用参数:字号12pt,双栏twocolumn。
b)导包:根据实际所需导入所需包。\usepackage{name}
ps:设置文中引用文本的颜色:
\usepackage[colorlinks=True,linkcolor=blue,anchorcolor=blue,citecolor=blue,CJKbookmarks=true]{hyperref}
c)作者基本信息:
作者:
\author[编号]{姓名}
通讯作者:
\author[编号]{姓名 \corref{mycorrespondingauthor}}
\cortext[mycorrespondingauthor]{Corresponding author}
邮箱:跟在作者内容后
\ead{邮箱}
地址(教师):
\affiliation[编号]{organization={学院},
addressline={学校},
city={城市},
postcode={邮编},
state={省份},
country={国家}}
d)论文基本信息:
标题:\title{
{The title}
摘要:
关键词:之间以\sep相隔开。
e)正文:
一级标题:
\section{Introduction}
\label{sec1}
二级标题:
\subsection{标题}
\label{
subsec1}
ps:更低等级的标题加对应的sub字符。
段落:
\par 文本……
有编号的文本:
\begin{itemize}
\item [(1)]
AAA
\item [(2)]
BBB
\end{itemize}
三线表:
\begin{table}[表格显示位置:h、t、b、p、!]
\caption[表名]\lable{标签号,以备后续引用}
\centering
\begin{tabular}{内容显示位置:l 左、c中、r右;要表格当中有竖线,以|隔开即可;其数量即内容列数}
\toprule[1.5pt] %三线表的第一条线
列名1 & 列名2 \\ % 中间以&隔开,以\\换行
\hline %三线表的第二条线
%表的内容
\bottomrule[1.5pt]
\end{tabular}
\end{table}
表格的引用:\ref{标签号}
表的缩放:\resizebox{\columnwidth}{!}{% 表格}, !表示等比例缩放
图:
一张图:
\begin{figure}[ht]
\centering %位置:居中
\includegraphics{图名}
\caption{The title of figure}\label{标签号}
\end{figure}
多张图:
\begin{figure*}[ht]
\centering
\begin{minipage}[t]{\textwidth}
\centering
\subfigure[Dataset1]{
\includegraphics[width=0.3\linewidth]{example-image-a}}
\subfigure[Dataset2]{
\includegraphics[width=0.3\linewidth]{example-image-a}}
\subfigure[Dataset3]{
\includegraphics[width=0.3\linewidth]{example-image-a}}
\subfigure[Dataset4]{
\includegraphics[width=0.3\linewidth]{example-image-a}}
\subfigure[Dataset5]{
\includegraphics[width=0.3\linewidth]{example-image-a}}
\subfigure[Dataset6]{
\includegraphics[width=0.3\linewidth]{example-image-a}}
\caption{The title of fig.2}
\label{标签号}
\end{minipage}
\end{figure*}
公式:
自动编号的行间公式:
\begin{equation}
\label{eq1}
f_{ij} = \frac{1}{1 + \delta} % 除法
\end{equation}
行内公式:
$\delta$,以$$包围。
大括号公式:
\begin{equation}
\label{eq2}
k=\left\{
\begin{array}{cc}
a, & \frac{1}{\delta} \textgreater M \\
b, & N\textless \frac{|C|}{|D^-|} \le M \\
c, & P \le \frac{|C|}{|D^-|} \le N
\end{array}
\right.
\end{equation}
单个{的使用要注意\right后面的. 否则会报错
图的引用:
\ref{标签号}
公式的引用:
\ref{标签号}
参考文献:
\begin{thebibliography}{00}
\bibitem{1} The first reference. % 参考文献1
\bibitem{2} The second reference.
\end{thebibliography}
附录:
\appendix
\label{sec6}
% 重新编号
\renewcommand{\thetable}{\arabic{table}}
\section{Appendix}
\begin{center}
\topcaption{Results1}
\label{table3}
\tablefirsthead{\toprule[1.5pt]Dataset & Metric & Method1 & Method2 & Method3 & Method4 & Method5 & Method6 & Method7\\\hline}
\tabletail{\bottomrule[1.5pt]}
\tablehead{\toprule[1.5pt]Dataset & Metric & Method1 & Method2 & Method3 & Method4 & Method5 & Method6 & Method7\\\hline}
\tablelasttail{\bottomrule[1.5pt]}
{\fontsize{9pt}{12pt}\selectfont
% 列内容存放位置,以及可通过p{长度}对表格的列宽进行限制
\begin{supertabular}{c c c c c p{1.5cm} p{1.5cm} p{1.5cm} c}
\hline
\multicolumn{1}{c}{\multirow{3}*{\shortstack{$abalone-19$\underline{\space}$vs$\\\underline{\space}$11$}}} & F1 & a & b & \underline{c} & d & g & e & \textbf{f} \\
\multicolumn{1}{c}{} & G-mean & a & b & \underline{c} & d & g & e & \textbf{f} \\
\multicolumn{1}{c}{} & ROC & a & b & \underline{c} & d & g & e & \textbf{c} \\
\end{supertabular}}
\end{center}
以\appendix开始,\renewcommand可为表重新命名,以不带A,当附录中存放表格的表格需要跨页时,使用supertabular。其中涉及多行多列合并内容,使用 \multicolumn{1}{c}{\multirow{3}*{名称}}(表示一列3行存储名称的单元格)。
2.完整编译内容见链接:
链接: https://pan.baidu.com/s/1jn_3bqxrcMWm_vjoal5ADw?pwd=7576 提取码: 7576
3.相关问题参考链接:
关于多行多列表格合并的参考链接:https://www.latexstudio.net/archives/8050.html
表格显示位置参考链接:Latex中使用Table(表格)和 常用参数解释_latex table-CSDN博客
图、公式参考链接:【学习笔记】史上最全的 overleaf 使用笔记!涵盖图表公式文献伪代码!_overleaf使用教程-CSDN博客
表格缩放参考链接:LaTeX 调整行距、列宽,以及表格的整体大小和字体大小_latex调整表格大小-CSDN博客
跨页表格参考链接:
跨页表格制作 longtable和 supertabular 示例 – LaTeX问答 (latexstudio.net)
免责声明:本站所有文章内容,图片,视频等均是来源于用户投稿和互联网及文摘转载整编而成,不代表本站观点,不承担相关法律责任。其著作权各归其原作者或其出版社所有。如发现本站有涉嫌抄袭侵权/违法违规的内容,侵犯到您的权益,请在线联系站长,一经查实,本站将立刻删除。 本文来自网络,若有侵权,请联系删除,如若转载,请注明出处:https://haidsoft.com/141433.html