Elsevier(Letex)模板下载及使用
(一)模板下载
URL:https://www.elsevier.com/authors/author-schemas/latex-instructions
1.下载压缩文件:elsarticle-ecrc.zip
2.解压缩后包含的文件有:elsdoc.pdf(简易使用手册)
ecrc-template.tex(模板文件) ,打开此文件,按照Letex语法将内容填入即可
(二)模板使用
使用Letex软件(如TeXworks)将ecrc-template.tex打开后:
1.主体框架
\documentclss[parameter]{elsarticle}
.............(加载包命令)
begin{document}
.............(组件命令)
\end{document}
注:parameter(设置排版格式)=[review(单栏)|preprint(单栏)|1p(单栏)|3p(单栏)|twocolumn(双栏)|5p(双栏)]
2.作者+单位
\author[mymainaddress]{第一作者}\ead[url]{文章链接地址}
\author[mysecondaryaddress]{二作(通讯)\corref{mycorrespondingauthor}}
\cortext[mycorrespondingauthor]{Corresponding author}
\ead[url]{通讯作者邮箱}
\address{单位名称}
3.摘要+关键词
\begin{abstract}
......(摘要内容)
\end{abstract}
\begin{keyword}
.....(关键词)
\end{keyword}
4.标题
一级标题:\section{一级标题} | \section*{一级标题} --- 不带标号
二级标题:\subsection{二级标题} | \subsection*{二级标题} --- 不带标号
三级标题:\subsubsection{三级标题} | \subsubsection*{三级标题} --- 不带标号
设置标题格式:
\usepackage{titlesec}
\titleformat{\section|subsection|subsubsection}{\字体大小\字体(bf)}{编号与文本的连接形式}{0.24em}{}
---字体大小:big | normalsize | small | tiny
---字体:如bf
---标题编号与文本的连接形式:如thesection.\,(即1.Introduce)
---标题编号与文本(第一个字符)的距离:如***em
---{}:可以不设置
5.首行缩进
\usepackage{indentfirst}
注:标题下的第一段默认缩进,但是从第二段开始不缩进(设置缩进:\par{文本内容})
6.公式+定理
\begin{equation} --- 一次编辑一个公式
......(公式)
\end{equation}
\begin{align}\centering --- 一次编辑多条公式
......\\(公式1)
......\\(公式2)
\end{centering}\end{align}
\newtheorem{thm}{Theorem}(放置在\documentclass{...}和\begin{document}之间)
\begin{thm}
......(定理)
\end{thm}
7.列表
\begin{enumerate}[(1) | Step 1.]
\item .....(文本内容)
\end{enumerate}
8.引用和参考文献
\citet{参考文献标号}
\section*{Reference}
\begin{thebibliography}{参考文献数}
\bibitem[作者 | 作者1 and 作者2 | 作者1,作者2,et.al(发表时间)]{参考文献编号}
....
\end{thebibliography}
扩展(快速查询手册)
URL:https://blog.csdn.net/qfire/article/details/81382048(编写公式查询很方便)
---------------------
作者:codeQin
来源:CSDN
原文:https://blog.csdn.net/qq_42394743/article/details/82872102
版权声明:本文为博主原创文章,转载请附上博文链接!