elsearticle
is a Typst template that aims to mimic the Elsevier article LaTeX class, a.k.a. elsearticle.cls
, provided by Elsevier to format manuscript properly for submission to their journals.
Basic usage
This section provides the minimal amount of information to get started with the template. For more detailed information, see the manual.
To use the elsearticle
template, you need to include the following line at the beginning of your typ
file:
#import "@preview/elsearticle:0.2.1": *
Initializing the template
After importing elsearticle
, you have to initialize the template by a show rule with the #elsearticle()
command. This function takes an optional argument to specify the title of the document.
title
: Title of the paperauthor
: List of the authors of the paperabstract
: Abstract of the paperjournal
: Name of the journalkeywords
: List of keywords of the paperformat
: Format of the paper. Possible values arepreprint
,review
,1p
,3p
,5p
numcol
: Number of columns of the paper. Possible values are 1 and 2
Additional features
The elsearticle
template provides additional features to help you format your document properly.
Appendix
To activate the appendix environment, all you have to do is to place the following command in your document:
#show: appendix
// Appendix content here
Subfigures
Subfigures are not built-in features of Typst, but the elsearticle
template provides a way to handle them. It is based on the subpar
package that allows you to create subfigures and properly reference them.
#subfigure(
figure(image("image1.png"), caption: []), <figa>,
figure(image("image2.png"), caption: []), <figb>,
columns: (1fr, 1fr),
caption: [(a) Left image and (b) Right image],
label: <fig>
)
Equations
The elsearticle
template provides the #nonumeq()
function to create unnmbered equations. The latter function can be used as follows:
#nonumeq[$
y = f(x)
$
]
Roadmap
Article format
- [x] Preprint
- [x] Review
- [x] 1p
- [x] 3p
- [x] 5p
Environment
- [x] Implementation of the
appendix
environment
Figures and tables
- [x] Implementation of the
subfigure
environment - [x] Proper referencing of figure, subfigures and tables w.r.t. the context
- [x] Recreation of the
link
to cross-reference figures, subfigures and tables
Equations
- [x] Proper referencing of equations w.r.t. the context
- [ ] Numbering each equation of a system as “(1a)” – On going discussions at the Typst dev level
Other features
- [ ] Line numbering - a PR is currently open on the Typst repo – See here
License
MIT licensed
Copyright © 2024 Mathieu AUCEJO (maucejo)