Elsevier LaTeX instructions 排版指导

LaTeX instructions

The guidelines on this page will help you to prepare and submit your LaTeX files. Please note that there are separate instructions available for CRC journal articles and IFAC meeting papers.

Preparing your manuscript

The Elsevier article class

The Elsevier article class helps you to format the frontmatter of your manuscript properly. It is part of the elsarticle package. This package is contained in most TeX distributions and is available on CTAN. Theelsarticle documentation and some common templates and bibliographic styles are part of this package as well. You can download a set of files containing a template LaTeX manuscript, using the elsarticle class, plus associated BibTeX style files here. Although elsarticle.cls supports most journal styles, it is not possible to match the journal's layout exactly.

Elsevier reference styles

Some journals require a specific reference style. The relevant bibliographic styles for LaTeX are packed with thesample manuscript.

Recommendations

To ensure a fast processing of your document, we recommend the following:

  • Use elsarticle.cls in combination with BibTeX.
  • Follow the documentation of the class you are using. (The documentation of elsarticle.cls is found here.)
  • Use the standard layout or keep layout changes to a minimum. (Custom layout will be removed.)
  • Keep it simple. (Advanced constructions with for example TikZ or pstricks will be rendered as images.)
  • Check your journal's Guide for Authors for any journal-specific formatting requirements.

Submitting your manuscript

Most journals accept a PDF of your manuscript at initial submission.

When you are asked to submit your manuscript source files, do the following:

  1. Build a PDF of your manuscript source files on your computer and attach it with item type 'Manuscript'.
  2. Bundle all manuscript source files in a single archive and attach it with item type 'LaTeX source files'. Source files include LaTeX files, BibTeX files, figures, tables, all LaTeX classes and packages that are not included in TeX Live and any other material that belongs to your manuscript.

Please note the following technical requirements for the submission of source files:

  • The source files should compile without errors with pdflatex or latex .
  • The PDF should be generated from the source files you submit.
  • All classes and packages that are not contained in TeX Live should be submitted along with the source files. You can check in the CTAN database whether your class or package is contained in TeX Live.
  • Figures should be submitted in one of the following formats: EPS, JPG, PDF or PNG. For quality standards, please see the artwork & media instructions.

Frequently Asked Questions

  • Why does EES throw an error when I try to build a PDF?
    Not all PDF versions are supported in EES. Open the PDF in Adobe Reader and save it as a new file, or convert the PDF to version 1.4 or lower and try again.
  • Why is the item type 'LaTeX source files' not available?
    Journals with very few LaTeX submissions may not have this item type. In this case, submit your manuscript in PDF format only and supply the source files when requested.

For more information and support, see the Elsevier Support Center.

Preparing CRC journal articles

Camera-ready copy (CRC) journals are those that reproduce the author's manuscript exactly, with no intervention by the typesetter. Such journals are the exception rather than the rule; if a journal is CRC, this fact is clearly indicated in the instructions to authors. The Procedia series of journals, for example, are genuine CRC. Please read carefully the journal's instructions to authors.

For LaTeX authors of camera-ready articles, we provide the ecrc.sty package. This is a small package designed to work with the elsarticle document class. All the features of elsarticle are available, along with a few extra commands specific to CRC reproduction. Documentation for the use of ecrc.sty is included in the manuscript template file available below.

The archive file elsarticle-ecrc.zip contains all the necessary files to run this package. To install ecrc.sty, unzip the elsarticle-ecrc.zip file. Usually the file can be unzipped directly in the local tree of your TeX distribution (for TeX Live, this would be in the texmf-local directory). The archive contains the following files:

Once the package has been installed, edit the manuscript file ecrc-template.tex according to the instructions in that file, and save with a new name. The manuscript file should be compiled with pdflatex (and bibtex if desired).

Please only use these packages after confirmation from the journal's editors.

from: https://www.elsevier.com/authors/author-schemas/latex-instructions
### 关于 Elsevier LaTeX 双栏排版方法 Elsevier 提供的 LaTeX 投稿模板支持双栏格式,这使得作者能够轻松适应其旗下期刊(如 Neurocomputing 和 Signal Processing 等)对于论文布局的需求[^1]。为了实现双栏排版,在使用模板时需注意以下几点: #### 设置文档类选项 在模板文件中,默认可能设置为单栏模式。如果需要启用双栏模式,则应在 `\documentclass` 命令中指定 `twocolumn` 参数。例如: ```latex \documentclass[twocolumn]{elsarticle} ``` 此命令会激活双栏布局,适用于大多数 Elsevier 期刊的要求。 #### 调整表格宽度 当采用双栏排版时,表格可能会超出页面边界或显得过宽。可以通过 `\resizebox` 宏包来调整表格尺寸以适配双栏布局。具体示例如下: ```latex \begin{table*}[htbp] \centering \caption{这是一个跨两栏显示的大表} \resizebox{\textwidth}{!}{ \begin{tabular}{|c|c|c|} \hline 列名1 & 列名2 & 列名3 \\ \hline 数据A & 数据B & 数据C \\ \hline \end{tabular} } \label{tab:big_table} \end{table*} ``` 上述代码通过 `\resizebox` 将整个表格缩放到当前文本宽度 (`\textwidth`) 并保持比例不变。需要注意的是,`\begin{table*}` 表明这是跨越两个栏目展示的大表[^3]。 #### 插入图片并控制位置 同样地,在双栏环境中插入图像也需要特别处理。推荐使用 `[H]` 或者 `[tbp!]` 这样的浮动参数,并结合图形裁剪功能确保视觉效果良好。下面是一个简单的例子: ```latex \usepackage{graphicx} \begin{figure*}[tbp!] \centering \includegraphics[width=\textwidth]{example-image-a.pdf} \caption{这张图横贯全文两侧区域} \label{fig:wide_image} \end{figure*} ``` 以上展示了如何利用 Elsevier 的官方模板完成高质量的双栏排版工作流程[^2]。 ---
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值