赞
踩
目录
1. Elsevier 通用latex模板下载:【elsarticle.zip】
2. Elsevier 复杂版式latex模板下载:【els-cas-templates.zip】,有单栏和双栏版本
2. 复杂版式模板【els-cas-templates.zip】使用说明
3. 自己使用的【复杂版式latex双栏模板】github下载链接、以及Overleaf效果:
1. Elsevier期刊模板:如何去掉页眉中的short title of this article?
2. Elsevier期刊模板:如何去掉preprint submitted to elsevier?
3. Elsevier期刊模板:如何去掉页面下方的ORCID(s)?
太长不看版:
官方指南:LaTeX instructions for authors| Elsevier
下载好的【elsarticle.zip】包含以下文件:
主要的 .tex
文件有 3 个:
3 个.tex文件基本完全一样,唯一的区别是参考文献的排版格式,分别对应三个不同的 .bst
文件:
下载好的【els-cas-templates.zip】包含以下文件:
注:官网上下载的latex模板压缩包,直接编译会报错,需要修改一些东西。。。。具体使用可参考以下CSDN博客,里面讲的很详细,有给出已经改好的可直接编译的latex压缩包!【通用latex模板】、【复杂版式latex模板】都有,导入到overleaf中即可正常编译使用!
1)复杂版式Latex双栏模板【els-cas-templates.zip】,无报错可直接编译:
2)以上下载链接里的【els-cas-templates.zip】压缩包,基于Elsevier官网的Latex模板(els-cas-templates.zip)进行了修改。主要是删除了一些不需要的文件,并对 cas-dc-template.tex 文件进行了一些修改。
修改后的cas-dc-template.tex文件内容(非常简易版):
- \documentclass[a4paper,fleqn]{cas-dc}
- %\documentclass[a4paper,fleqn,longmktitle]{cas-dc}
- \usepackage[numbers]{natbib}
- %\usepackage[authoryear]{natbib}
- %\usepackage[authoryear,longnamesfirst]{natbib}
-
- %%%Author macros
- \def\tsc#1{\csdef{#1}{\textsc{\lowercase{#1}}\xspace}}
- \tsc{WGM}
- \tsc{QE}
- %%%
-
- \begin{document}
- \let\WriteBookmarks\relax
- \def\floatpagepagefraction{1}
- \def\textpagefraction{.001}
- \let\printorcid\relax % 可去掉页面下方的ORCID(s)
-
- % Short title
- % \shorttitle{<short title of the paper for running head>}
- \shorttitle{}
-
- % Short author
- % \shortauthors{<short author list for running head>}
- \shortauthors{Ming Xiao et al.}
-
- % Main title of the paper 论文标题
- \title[mode = title]{This is the title of the paper}
-
- %作者信息
- \author[1]{Ming Xiao}
- \author[1]{San Zhang}
- \author[2]{Si Li}
- \author[2]{Ming Da}
- \cormark[1]
-
- \address[1]{xxx Laboratory, xxx University, Changsha 410073, China} %声明第一单位
- \address[2]{xxx Laboratory, xxx University, Changsha 410073, China} %声明第二单位
- \cortext[1]{Corresponding author} %声明通讯作者
-
-
- % Here goes the abstract
- \begin{abstract}
- In this work we demonstrate $a_b$ the formation Y\_1 of a new type of polariton on the interface between a cuprous oxide slab and a polystyrene micro-sphere placed on the slab. The evanescent field of the resonant whispering gallery mode of the micro sphere has a substantial gradient, and therefore effectively couples with the quadrupole $1^S$ excitons in cuprous oxide. This evanescent polariton has a long life-time, which is determined only by its excitonic and component. The polariton lower branch has a well pronounced minimum. This suggests that this excitation is localized and can be utilized for possible. The spatial coherence of the polariton can be improved by assembling the micro-spheres into a linear chain.
- \end{abstract}
-
-
- % Keywords
- % Each keyword is seperated by \sep
- \begin{keywords}
- keyword-1 \sep
- keyword-2 \sep
- keyword-3
- \end{keywords}
-
- \maketitle
-
- % Main text
- \section{Section-1}
-
- Text of section-1 \cite{Fortunato2010}.
-
- \section{Section-2}
-
- Text of section-2 \cite{NewmanGirvan2004}.
-
- \section{Section-3}
-
- Text of section-3 \cite{Vehlowetal2013}.
-
-
-
- %% Loading bibliography style file
- %\bibliographystyle{model1-num-names}
- \bibliographystyle{cas-model2-names}
-
- % Loading bibliography database
- \bibliography{cas-refs}
-
- % Biography
- % \bio{}
- % % Here goes the biography details.
- % \endbio
-
- % \bio{pic1}
- % % Here goes the biography details.
- % \endbio
-
- \end{document}

3)Overleaf运行效果:
1)Elsevier(爱思唯尔)LaTex 模板详细说明_爱思唯尔latex模板-CSDN博客
具体latex使用说明,可参考CSDN博客 Elsevier(爱思唯尔)LaTex 模板详细说明,其中有关题目、作者信息、参考文献的修改,都有提到。可以直接使用作者给出的已经调好的可以直接编译的latex模板(【通用latex模板】、【复杂版式latex模板】都有),一般会使用复杂版式的双栏模板,把下载好可直接编译的latex压缩包导入overleaf,即可成功编译使用!!!
2)如何正确使用Elsevier的LaTeX模板 - 知乎 (里面有详细讲解作者信息的修改~)
参考以下b站视频,讲的很详细:
爱斯维尔Elsevier如何使用Latex进行投稿_哔哩哔哩_bilibili
以下问题适用于:采用复杂版式模板【els-cas-templates.zip】中的cas-dc-template.tex文件(双栏 tex 模板)。
问题:如何去掉页眉中的short title of this article?
解决:在【cas-dc-template.tex文件】正文中,找到\shorttitle,把花括号里的内容<short title of the paper for running head>删除即可!注意这里是把里面的内容删除,而不是注释整行代码,然后就可以了。
- % \shorttitle{<short title of the paper for running head>}
- \shorttitle{}
问题:如何去掉preprint submitted to elsevier?
解决:参照别人的解决方法,找到【cas-common.sty文件】中的\cs_new:Npn __first_footerline(直接搜索),去掉对应的内容即可。(不过网上说没有必要去掉这个,最初投稿的时候,这个"preprint to submitted to elsevier"和旁边的"Page 1 of 1",留着也行!所以还是别浪费时间去删掉它了,留着吧~)
- ####### 原来的:
- \cs_new:Npn \__first_footerline:
- {
- \group_begin:
- \small
- \sffamily
- \ifnum\theblind>0\relax
- \else
- \__short_authors: :~
- \fi
- { \rmfamily \itshape Preprint~ submitted ~to ~Elsevier }
- \group_end:
- }
- ###### 改为:
- \cs_new:Npn \__first_footerline:
- {
- \group_begin:
- \small
- \sffamily
- \ifnum\theblind>0\relax
- \else
- \__short_authors:
- \fi
- { \rmfamily \itshape }
- \group_end:
- }
在overleaf上看一下效果:(preprint submitted to elsevier确实没啦!
在\begin{document}下面加上\let\printorcid\relax,如下:
- \begin{document}
- \let\WriteBookmarks\relax
- \def\floatpagepagefraction{1}
- \def\textpagefraction{.001}
- \let\printorcid\relax %可去掉页面下方的ORCID(s)
参考:
LATEX取消页眉中的short title of this article_short title of the article-CSDN博客
Elsevier期刊Latex模板注意事项总结_爱思唯尔格式latex-CSDN博客
elsarticle.cls 中如何去掉日期和预发表杂志名_preprint submitted to elsevier-CSDN博客
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。