123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- %% Author_tex.tex
- %% V1.0
- %% 2012/13/12
- %% developed by Techset
- %%
- %% This file describes the coding for rsproca.cls
- \documentclass[]{rsos}%%%%where rsos is the template name
- $if(lineno)$
- \usepackage{lineno}
- \linenumbers
- $endif$
- \usepackage[T1]{fontenc}
- \usepackage[utf8]{inputenc}
- $for(header-includes)$
- $header-includes$
- $endfor$
- %%%% *** Do not adjust lengths that control margins, column widths, etc. ***
- %%%%%%%%%%% Defining Enunciations %%%%%%%%%%%
- \newtheorem{theorem}{\bf Theorem}[section]
- \newtheorem{condition}{\bf Condition}[section]
- \newtheorem{corollary}{\bf Corollary}[section]
- %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
- \begin{document}
- %%%% Article title to be placed here
- \title{$title$}
- \author{
- $for(author)$
- $author.name$$$^{$author.affiliation$}$$$sep$,
- $endfor$
- }
- \address{
- $for(address)$
- $$^{$address.code$}$$$address.address$$sep$\\
- $endfor$
- }
- %%%% Subject entries to be placed here %%%%
- \subject{
- $for(subject)$
- $subject$$sep$,
- $endfor$
- }
- %%%% Keyword entries to be placed here %%%%
- \keywords{
- $for(keywords)$
- $keywords$$sep$,
- $endfor$
- }
- %%%% Insert corresponding author and its email address}
- \corres{
- $corresp_author_name$\\
- e-mail: $corresp_author_email$
- }
- %%%% Abstract text to be placed here %%%%%%%%%%%%
- \begin{abstract}
- $abstract$
- \end{abstract}
- %%%%%%%%%%%%%%%%%%%%%%%%%%%
- %% Some pieces required from the pandoc template
- \providecommand{\tightlist}{%
- \setlength{\itemsep}{0pt}\setlength{\parskip}{0pt}}
- \providecommand{\EndFirstPage}{%
- }
- \maketitle
- $body$
- $if(ethics)$
- \ethics{$ethics$}
- $endif$
- $if(data_accessibility)$
- \dataccess{$data_accessibility$}
- $endif$
- \aucontribute{$author_contributions$}
- $if(conflict_of_interest)$
- \competing{$conflict_of_interest$}
- $endif$
- $if(funding)$
- \funding{$funding$}
- $endif$
- $if(disclaimer)$
- \disclaimer{$disclaimer$}
- $endif$
- $if(acknowledgements)$
- \ack{$acknowledgements$}
- $endif$
- $if(natbib)$
- \bibliographystyle{RS}
- \bibliography{$bibliography$}
- $endif$
- $for(include-after)$
- $include-after$
- $endfor$
- \end{document}
|