| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- \documentclass[a4paper,fleqn,usenatbib]{mnras}
- \usepackage{newtxtext,newtxmath}
- \usepackage[T1]{fontenc}
- \usepackage{ae,aecompl}
- $if(texpackages)$
- $for(texpackages)$
- \usepackage
- $if(opts)$
- [
- $for(opts)$
- $opts$,
- $endfor$
- ]
- $endif$
- {$texpackages.name$}
- $endfor$
- $endif$
- $if(preambleinput)$
- $for(preambleinput)$
- \input{$preambleinput$}
- $endfor$
- $endif$
- \title[$shorttitle$]{$title$}
- \author[$shortauthors$]{
- $for(author)$
- $author.name$,
- $if(author.affiliation)$
- $for(author.affiliation)$
- $$^{a}$$
- $endfor$
- $endif$
- $if(author.email)$
- \thanks{E-mail: $author.email$}
- $endif$
- $endfor$
- \\
- $for(author)$
- $if(author.affiliation)$
- $for(author.affiliation)$
- $$^{a}$$ $author.affiliation$\\
- $endfor$
- $endif$
- $endfor$
- }
- \date{$date$}
- $if(pubyear)$
- \pubyear{$pubyear$}
- $endif$
- \begin{document}
- \label{firstpage}
- \pagerange{\pageref{firstpage}--\pageref{lastpage}}
- \maketitle
- $if(abstract)$
- \begin{abstract}
- $abstract$
- \end{abstract}
- $endif$
- $if(keywords)$
- \begin{keywords}
- $for(keywords)$
- $keywords$ ---
- $endfor$
- \end{keywords}
- $endif$
- $body$
- \end{document}
|