| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- \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$
- \end{document}
|