\documentclass[]{Liebert_Author}
\title{Author Usage Template for Liebert Journals}
\author{Author 1,$^{1\ast}$ Author 2,$^{1}$ Author 3$^{2}$\\
{$^{1}$Department of Chemistry, University of Wherever,}\\
{An Unknown Address, Wherever, ST 00000, USA}\\
{$^{2}$Another Unknown Address, Palookaville, ST 99999, USA}\\
{$^\ast$To whom correspondence should be addressed;}\\
{E-mail: jsmith@wherever.edu.}
}
\begin{document}
\maketitle
\keywords{keywords1, keywords2 and keywords3}
\begin{abstract}
This document presents a number of hints about how to set up your
\textit{Science} paper in \LaTeX. We provide a template file,
\texttt{Liebert\_sample.tex}, that you can use to set up the \LaTeX\ source
for your article. An example of the style is the special
\texttt{\{abstract\}} environment used to set up the abstract you
see here.
\end{abstract}
\section{Front Matter}
Please follows the below tags for front matter part for your article:
\begin{verbatim}
\title{Article Title}
\author{Author 1,$^{1\ast}$ Author 2,$^{1}$ Author 3$^{2}$\\
{$^{1}$Department of Chemistry, University of Wherever,}\\
{An Unknown Address, Wherever, ST 00000, USA}\\
{$^{2}$Another Unknown Address, Palookaville, ST 99999, USA}\\
{$^\ast$To whom correspondence should be addressed;
E-mail: jsmith@wherever.edu.}
}
\maketitle
\end{verbatim}
\section{Abstract}
Use the tag:
\begin{verbatim}
\begin{abstract}
This document presents a number of hints about how to set up your
\textit{Science} paper in \LaTeX. We provide a template file,
\texttt{Liebert_sample.tex}, that you can use to set up the \LaTeX\ source
for your article. An example of the style is the special
\texttt{\{abstract\}} environment used to set up the abstract you
see here.
\end{abstract}
\end{verbatim}
\section{Introduction}
In this file, we present some tips and sample mark-up to assure your
\LaTeX\ file of the smoothest possible journey from review manuscript
to published paper. We focus here particularly on
issues related to headings, citations, and maths, tables, and
figures, as those tend to be the biggest sticking points. Please use
the source file for this document, \texttt{Liebert\_sample.tex}, as a template
for your manuscript, cutting and pasting your content into the file at
the appropriate places.
\subsection{Headings}
Use the standard tags \verb!\section, \subsection, \subsubsection, \paragraph! and \verb!\subparagraph! for the Headings \verb!H1, H2, H3, H4! and \verb!H5! respectively.
\subsection{Handling Math, Tables, and Figures}
We suggest to use \verb!mathtools.sty! file to get various types of
display math styles. Few of the coding are given below for easy
reference:
\bigskip
\noindent\begin{tabular}{@{}ll}
\toprule
\verb!equation!\\
\verb!align!\\
\verb!\[...\]! or \verb!equation*!\\
\verb!gather!\\
Various types of matrices, e.g., \verb!pmatrix!, \verb!bmatrix!,
\verb!vmatrix!, \verb!smallmatrix! etc.\\
\verb!alignat!\\
\bottomrule
\end{tabular}
\subsection{Tables}
We suggest to use \verb!threeparttable.sty! file to get the tables
and its notes in a proper way. Example given below:
\begin{verbatim}
\begin{table}
\begin{threeparttable}
\caption{Time of the Transition Between Phase 1 and Phase 2\tnote{$a$}
\label{tab:label}}
\begin{tabular}{@{}ll}
\toprule
Run & Time (min) \\
\midrule
\textit{l}1 & 260 \\
\textit{l}2 & 300 \\
\textit{l}3 & 340 \\
\textit{h}1 & 270 \\
\textit{h}2 & 250 \\
\textit{h}3 & 380 \\
\textit{r}1 & 370 \\
\textit{r}2 & 390 \\
\bottomrule
\end{tabular}
\begin{tablenotes}[flushleft]\footnotesize
\item[${a}$]Table note text here.
\end{tablenotes}
\end{threeparttable}
\end{table}
\end{verbatim}
\subsubsection*{Output}
\begin{table}[h!]
\begin{threeparttable}
\caption{Time of the Transition Between Phase 1 and Phase 2\tnote{$a$}
\label{tab:label}}
\setlength{\tabcolsep}{45pt}%
\begin{tabular}{@{}ll}
\toprule
Run & Time (min) \\
\midrule
\textit{l}1 & 260 \\
\textit{l}2 & 300 \\
\textit{l}3 & 340 \\
\textit{h}1 & 270 \\
\textit{h}2 & 250 \\
\textit{h}3 & 380 \\
\textit{r}1 & 370 \\
\textit{r}2 & 390 \\
\bottomrule
\end{tabular}
\begin{tablenotes}[flushleft]\footnotesize
\item[${a}$]Table note text here.
\end{tablenotes}
\end{threeparttable}
\end{table}
\subsection*{Spanning rules}
Use \verb!\cmidrule! to obtain spanning of rules from column to
column, usage is:
\begin{verbatim}
\cmidrule{fromcolumn-tocolumn}, e.g, \cmidrule{2-3}
\end{verbatim}
\subsection{Figures}
Figure callouts within the text should be
in the form of \LaTeX\ references, e.g., \verb+\ref{fig1}+. For the
figures themselves, treatment can differ depending on whether the
manuscript is an initial submission or a final revision for acceptance
and publication. For an initial submission and review copy, you can
use the \LaTeX\ \verb+{figure}+ environment and the
\verb+\includegraphics+ command to include your PostScript figures at
the end of the compiled file. For the final revision,
however, the \verb+{figure}+ environment should \textit{not} be used;
instead, the figure captions themselves should be typed in as regular
text at the end of the source file (an example is included here), and
the figures should be uploaded separately according to the Art
Department's instructions.
\subsection*{Landscape Images/Tables}
Please use \verb!\begin{sidewaystable}...\end{sidewaystable}! and\\
\verb!\begin{sidwaysfigure}...\end{sidewaysfigure}! for to get rotating figures/tables.
For inline image please use the tag shown as below:
\begin{verbatim}
\bigskip
\includegrahics{figure.eps}
\bigskip
\end{verbatim}
\section{Algorithms}
For \verb@Algorithms@ please use the standard \LaTeX\ supporting file
\verb!algorithm2e.sty!, the format and the output given below:
\begin{verbatim}
\begin{algorithm}[h!]
\SetAlgoLined
\SetKwFunction{IL}{InitializeDistance}
\SetKwFunction{PL}{PropagateInsertion}
\SetKwFunction{MIN}{Min}
\SetKwFunction{MX}{Max}
\SetKwFunction{TOP}{Top}
\SetKwFunction{Push}{Push}
\SetKwFunction{Pop}{Pop}
\SetKwFunction{Append}{Append}
\SetKwData{Queue}{Queue}
\KwResult{The length of shortest path from $s$ to $t$}
$PreviousLayer=[s]$\;
$s.distance = 0$\;
\For(\tcc*[f]{Do the computation layer by layer}){i = 1 \KwTo m}{
$CurrentLayer = [(i,v_1),(i,v_{2}),\ldots, (i,v_{n}), (i,k)]$\;
$x.distance = \infty \ \forall x \in CurrentLayer$\;
\IL{PreviousLayer,CurrentLayer}\;
\PL{CurrentLayer}\;
$PreviousLayer = CurrentLayer$\;
}
\KwRet{\MIN{PreviousLayer.distance}}\;
\caption{Algorithm for sequence to graph alignment}
\label{algo:linear}
\end{algorithm}
\end{verbatim}
\subsection*{Output}
\begin{algorithm}[h!]
\SetAlgoLined
\SetKwFunction{IL}{InitializeDistance}
\SetKwFunction{PL}{PropagateInsertion}
\SetKwFunction{MIN}{Min}
\SetKwFunction{MX}{Max}
\SetKwFunction{TOP}{Top}
\SetKwFunction{Push}{Push}
\SetKwFunction{Pop}{Pop}
\SetKwFunction{Append}{Append}
\SetKwData{Queue}{Queue}
\KwResult{The length of shortest path from $s$ to $t$}
$PreviousLayer=[s]$\;
$s.distance = 0$\;
\For(\tcc*[f]{Do the computation layer by layer}){i = 1 \KwTo m}{
$CurrentLayer = [(i,v_1),(i,v_{2}),\ldots, (i,v_{n}), (i,k)]$\;
$x.distance = \infty \ \forall x \in CurrentLayer$\;
\IL{PreviousLayer,CurrentLayer}\;
\PL{CurrentLayer}\;
$PreviousLayer = CurrentLayer$\;
}
\KwRet{\MIN{PreviousLayer.distance}}\;
\caption{Algorithm for sequence to graph alignment}
\label{algo:linear}
\end{algorithm}
\section{Lists}
Please use the standard tags for Numbered lists and Bulleted lists, e.g.,
\subsection*{Numbered lists}
\begin{verbatim}
\begin{enumerate}
\item Text for first level numbered lists text text text text
Text for first level numbered lists text text text text
\begin{enumerate}
\item Text for second level numbered lists text text text text
Text for first level numbered lists text text text text
\item text text text text Text for first level numbered lists
text text text text
\end{enumerate}
\item text text text text Text for first level numbered lists
text text text text
\end{enumerate}
\end{verbatim}
\subsection*{Output}
\begin{enumerate}
\item Text for first level numbered lists text text text text Text for first level numbered lists text text text text
\begin{enumerate}
\item Text for second level numbered lists text text text text Text for first level numbered lists text text text text
\item text text text text Text for first level numbered lists text text text text
\end{enumerate}
\item text text text text Text for first level numbered lists text text text text
\end{enumerate}
\subsection*{Bulleted lists}
\begin{verbatim}
\begin{itemize}
\item Text for first level bulleted lists text text text text
Text for first level bulleted lists text text text text
\begin{itemize}
\item Text for second level bulleted lists text text text text
Text for first level bulleted lists text text text text
\item text text text text Text for first level bulleted lists
text text text text
\end{itemize}
\item text text text text Text for first level bulleted lists
text text text text
\end{itemize}
\end{verbatim}
\subsection*{Output}
\begin{itemize}
\item Text for first level bulleted lists text text text text Text for first level bulleted lists text text text text
\begin{itemize}
\item Text for second level bulleted lists text text text text Text for first level bulleted lists text text text text
\item text text text text Text for first level bulleted lists text text text text
\end{itemize}
\item text text text text Text for first level bulleted lists text text text text
\end{itemize}
\subsection*{Extract/Quote}
Use the standard tag \verb!\begin{quote}...\end{quote}! for quoted text, e.g.,
\begin{verbatim}
\begin{quote}
Text for quoted text text text text text text text text text text text
text text text text text text text text text text text text text text
\end{quote}
\end{verbatim}
\subsection*{Output}
\begin{quote}
Text for quoted text text text text text text text text text text text
text text text text text text text text text text text text text text
\end{quote}
\section{Footnote}
Use standard \LaTeX\ tag \verb!\footnote! to get the footnotes at the
bottom of the page.
\section{Special fonts}
Use standard \LaTeX\ tags \verb!\mathcal!, \verb!\mathscr!, and
\verb!\mathbb! to get the characters in special fonts like
$\mathcal{A}, \mathscr{A}$ and $\mathbb{A}$, respectively
\section{Enunciation or Math heads}
Generally \verb!theorem!, \verb!lemma!, etc. are called as
Enunciation or Math heads. In this template we defined some standard
enunciations (\verb!theorem!, \verb!lemma!, \verb!corollary! in the
template.
\subsection*{Sample input/Output}
\subsection{Input}
\begin{verbatim}
\begin{theorem}
This is for test for math head ``Theorem'' text text text text
Text for first level numbered lists text text text text
\end{theorem}
\end{verbatim}
\subsection{Output}
\begin{theorem}
This is for test for math head ``Theorem'' text text text text
Text for first level numbered lists text text text text
\end{theorem}
\subsection{Define own Math Heads/Enunciation}
You allowed to define your own enunciations and the format is given
below:
\begin{verbatim}
\newtheorem{short name of the head}{Head to Display}
\end{verbatim}
\subsection*{Example}
If you need to define group of text under the head ``Proposition'',
then you have to define as
\begin{verbatim}
\newtheorem{proposition}{Proposition}
\end{verbatim}
\newtheorem{proposition}{Proposition}
\begin{proposition}
This is for test for math head ``Theorem'' text text text text
Text for first level numbered lists text text text text
\end{proposition}
\subsection{Unnumbered Math Heads/Enunciation}
Just introduce \verb!*!, which makes the numbered math head text
into unnumbered math head, e.g.,
\begin{verbatim}
\begin{theorem*}
This is for test for math head ``Theorem'' text text text text
Text for first level numbered lists text text text text
\end{theorem*}
\end{verbatim}
\begin{theorem*}
This is for test for unnumbered math head ``Theorem'' text text text text
Text for first level numbered lists text text text text
\end{theorem*}
\section{Bibliography/References}
We suggest you to use the package \verb!natbib.sty! to achieve various types of bibliography entries. It supports both numbered and name\&year style references, and its cross links. The details are given below:
\subsection{Formatting Citations}
\noindent\begin{tabular}{@{}ll}
\bf Type&\bf Results\\
\midrule
\verb+\citet{jon90}+&Jones et al. (1990)\\
\verb+\citet[chap. 2]{jon90}+&Jones et al. (1990, chap. 2)\\
\verb+\citep{jon90}+ & (Jones et al., 1990)\\
\verb+\citep[chap. 2]{jon90}+ & (Jones et al., 1990, chap. 2)\\
\verb+\citep[see][]{jon90}+ & (see Jones et al., 1990)\\
\verb+\citep[see][chap. 2]{jon90}+ & (see Jones et al., 1990, chap. 2)\\
\verb+\citet*{jon90}+ & Jones, Baker, and Williams (1990)\\
\verb+\citep*{jon90}+ & (Jones, Baker, and Williams,
1990) \\
\end{tabular}
\section{Notes}
We have already included all the required \texttt{.sty} files into the
\LaTeX\ template \verb!Liebert_Author.cls!, hence no need to call those in
your \texttt{.tex} application files.
\section*{Acknowledgments}
Generallay \verb!Acknowledgments! text either comes in frontmatter
part or before end of the reference part.
\nocite*{}
\bibliographystyle{plain}
\bibliography{sample}
\section{To add any instruction to Comp}
Please use the tag \verb!\notetocomp! to display any important
note/info to typesetter/comp/publisher, this will produce the output
in margin, example shown below:
\begin{verbatim}
\notetocomp{Note to comp/publisher}
\end{verbatim}
\subsection*{Output}
This is for test \notetocomp{Note to comp/publisher} this is for test
\end{document}