| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- \documentclass{aa}
- \usepackage{booktabs}
- \usepackage{graphicx}
- \usepackage{txfonts}
- \usepackage{hyperref}
- $if(texpackages)$
- $for(texpackages)$
- \usepackage
- $if(opts)$
- [
- $for(opts)$
- $opts$,
- $endfor$
- ]
- $endif$
- {$texpackages.name$}
- $endfor$
- $endif$
- $if(preambleinput)$
- $for(preambleinput)$
- \input{$preambleinput$}
- $endfor$
- $endif$
- \begin{document}
- \title{$title$}
- \author{
- $for(author)$
- $author.name$,
- $if(author.affiliation)$
- $for(author.affiliation)$
- \inst{1}
- $endfor$
- $endif$
- \and
- $endfor$
- }
- \institute{
- $for(author)$
- $if(author.affiliation)$
- $for(author.affiliation)$
- $author.affiliation$\\
- $endfor$
- \and
- $endif$
- $endfor$
- }
- \date{
- Received
- $if(received)$
- $received$
- $else$
- YYY
- $endif$
- /
- Accepted
- $if(accepted)$
- $accepted$
- $else$
- XXX
- $endif$
- }
- $if(abstract.context)$
- \abstract
- {$abstract.context$}
- {$abstract.aim$}
- {$abstract.methods$}
- {$abstract.results$}
- {$abstract.conclusions$}
- $else$
- \abstract{$abstract$}
- $endif$
- $if(keywords)$
- \keywords{
- $for(keywords)$
- $keywords$ --
- $endfor$
- }
- $endif$
- \maketitle
- $body$
- $if(bibliography)$
- $for(bibliography)$
- \bibliography{$bibliography$}
- $endfor$
- $endif$
- \end{document}
|