Elsarticle - CAS: Difference between revisions
Jump to navigation
Jump to search
(→Usage) |
|||
Line 75: | Line 75: | ||
\maketitle | \maketitle | ||
</syntaxhighlight> | |||
===Tables=== | |||
<syntaxhighlight lang="latex"> | |||
\begin{table*}[width=.9\textwidth,cols=4,pos=h] | |||
\caption{This is a test caption.} | |||
\begin{tabular*}{\tblwidth}{@{} LLLL@{} } | |||
\toprule | |||
Col 1 & Col 2 & Col 3 & Col4\\ | |||
\midrule | |||
12345 & 12345 & 123 & 12345 \\ | |||
12345 & 12345 & 123 & 12345 \\ | |||
12345 & 12345 & 123 & 12345 \\ | |||
12345 & 12345 & 123 & 12345 \\ | |||
12345 & 12345 & 123 & 12345 \\ | |||
\bottomrule | |||
\end{tabular*} | |||
\end{table*} | |||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 17:43, 24 September 2018
Elsarticle - CAS
Class files
Usage
There are two class files
cas-sc.cls
for single column journals.\documentclass[<options>]{cas-sc}
cas-dc.cls
for double column journals.\documentclass[<options>]{cas-dc}
and have an option longmktitle
to handle long front matter.
Front matter
\title[mode = title]{This is a title}
\tnotemark[1,2]
\tnotetext[1]{Title notes}
\author[1,3]{Editor}
[type=editor,
auid=000,bioid=1,
prefix=Sir,
role=Researcher,
orcid=0000-0001-7511-2910,
facebook=Editor,
twitter=Editor,
linkedin=Editor,
gplus=Editor]
\cormark[1]
\fnmark[1]
\ead{cvr_1@tug.org.in}
\ead[url]{www.cvr.cc, www.tug.org.in}
\credit{Conceptualization of this study, Methodology, Software}
\author[2,4]{Han Theh Thanh}[style=chinese]
\author[1]{First Author}
[role=Co-ordinator,
suffix=Jr,
facebook=Author,
twitter=Author,
gplus=Author,
linkedin=Author
]
\fnmark[2]
\ead{rishi@sayahna.org}
\ead[URL]{www.sayahna.org}
\credit{Credit text}
\author[1,2]{Second Author}
\ead{karl@freefriends.org}
\ead[URL]{www.tug.org}
\address[2]{Unknown university, City, Country}
\cortext[cor1]{Corresponding author text}
\fntext[fn1]{This is a author footnote.}
\nonumnote{This note has no numbers.}
\begin{abstract}
This is a abstract
\end{abstract}
\begin{keywords}
First keyword \sep Second keyword \sep Third keyword \sep Fourth keyword
\end{keywords}
\maketitle
Tables
\begin{table*}[width=.9\textwidth,cols=4,pos=h]
\caption{This is a test caption.}
\begin{tabular*}{\tblwidth}{@{} LLLL@{} }
\toprule
Col 1 & Col 2 & Col 3 & Col4\\
\midrule
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
12345 & 12345 & 123 & 12345 \\
\bottomrule
\end{tabular*}
\end{table*}