Step 01: 提取 elsarticle.cls
文件
Step 02: 选择并编辑elsarticle-template-num.tex
Step 03: 注释Graph Abstract
以及 Highlight
%%Graphical abstract
\begin{graphicalabstract}
%\includegraphics{grabs}
\end{graphicalabstract}
%%Research highlights
\begin{highlights}
\item Research highlight 1
\item Research highlight 2
\end{highlights}
Step 04: 修改journal name
\journal{Nuclear Physics B}
- 替换
Title-Author-Affliation
Origin
%% Title, authors and addresses
%% use the tnoteref command within \title for footnotes;
%% use the tnotetext command for theassociated footnote;
%% use the fnref command within \author or \address for footnotes;
%% use the fntext command for theassociated footnote;
%% use the corref command within \author for corresponding author footnotes;
%% use the cortext command for theassociated footnote;
%% use the ead command for the email address,
%% and the form \ead[url] for the home page:
%% \title{Title\tnoteref{label1}}
%% \tnotetext[label1]{}
%% \author{Name\corref{cor1}\fnref{label2}}
%% \ead{email address}
%% \ead[url]{home page}
%% \fntext[label2]{}
%% \cortext[cor1]{}
%% \affiliation{organization={},
%% addressline={},
%% city={},
%% postcode={},
%% state={},
%% country={}}
%% \fntext[label3]{}
\title{}
%% use optional labels to link authors explicitly to addresses:
%% \author[label1,label2]{}
%% \affiliation[label1]{organization={},
%% addressline={},
%% city={},
%% postcode={},
%% state={},
%% country={}}sasasa
%%
%% \affiliation[label2]{organization={},
%% addressline={},
%% city={},
%% postcode={},
%% state={},
%% country={}}
\author{}
\affiliation{organization={},%Department and Organization
addressline={},
city={},
postcode={},
state={},
country={}}
New
\title{This this the article title\tnoteref{t1}}
\author[1]{Author1}
\author[1]{Author2\corref{mycorrespondingauthor}}
\cortext[mycorrespondingauthor]{Corresponding author}
\ead{Author2's email address}
\author[1]{Author3}
\author[2]{Author4}
\address[1]{State Key Laboratory of Digital Manufacturing Equipment and Technology, School of Mechanical Science and Engineering,
Huazhong University of Science and Technology, Wuhan 430074, PR China
}
\address[2]{Industrial and System Engineering, 4627 Seamans Center, The University of Iowa, Iowa City, IA 52242- 1527, USA}
Step 05: 编辑Abstract
\begin{abstract}
%% Text of abstract
\end{abstract}
Step 06: 插入Keywords
, 用\sep
分开
\begin{keyword}
%% keywords here, in the form: keyword \sep keyword
%% PACS codes here, in the form: \PACS code \sep code
%% MSC codes here, in the form: \MSC code \sep code
%% or \MSC[2008] code \sep code (2000 is the default)
\end{keyword}
Step 07: 新增Body
文件,在并以嵌套的形式,插入主文件,今后投稿只需要替换Body
文件即可
%% main text
\input{Body}
Step 08: 注释嵌入式
的参考文献插入方式,改用bib
注释下面源代码
\begin{thebibliography}{00}
%% \bibitem{label}
%% Text of bibliographic item
\bibitem{}
\end{thebibliography}
\begin{document}
开头插入\bibliographystyle{elsarticle-num}
\bibliographystyle{elsarticle-num}
\begin{document}
\linenumbers
\end{document}
文末插入 \bibliography{BibFileName}
\bibliography{BibFileName}
\end{document}
Step 09: \begin{document}
之前加载需要的工具包\include{preamble}
,以下是我所需要的preamble文件
\include{preamble}
\begin{document}
\usepackage{amssymb}
\usepackage{graphicx}
\usepackage{booktabs, tabularx, wrapfig}
\usepackage[table,xcdraw]{xcolor}
\usepackage[normalem]{ulem}
\usepackage{multirow}
\usepackage{longtable}
\usepackage{amsmath, amssymb}
\usepackage{enumitem, array}
\usepackage[linesnumbered, ruled]{algorithm2e}
\usepackage{ragged2e}
\usepackage{lineno}
- 大总结
\documentclass[preprint,12pt]{elsarticle}
\usepackage{amssymb}
\include{preamble}
\journal{Measurement}
% \begin{document}
\bibliographystyle{elsarticle-num}
\begin{document}
\begin{frontmatter}
\title{This this the article title\tnoteref{t1}}
\author[1]{Author1}
\author[1]{Author2\corref{mycorrespondingauthor}}
\cortext[mycorrespondingauthor]{Corresponding author}
\ead{Author2's email address}
\author[1]{Author3}
\author[2]{Author4}
\address[1]{State Key Laboratory of Digital Manufacturing Equipment and Technology, School of Mechanical Science and Engineering,
Huazhong University of Science and Technology, Wuhan 430074, PR China
}
\address[2]{Industrial and System Engineering, 4627 Seamans Center, The University of Iowa, Iowa City, IA 52242- 1527, USA}
\begin{abstract}
%% Text of abstract
\end{abstract}
% %%Graphical abstract
% \begin{graphicalabstract}
% %\includegraphics{grabs}
% \end{graphicalabstract}
% %%Research highlights
% \begin{highlights}
% \item Research highlight 1
% \item Research highlight 2
% \end{highlights}
\begin{keyword}
\end{keyword}
\end{frontmatter}
\linenumbers
%% main text
\section{}
\label{}
Cite \cite{liu2022active}
\bibliography{aftbl}
\end{document}
\endinput