aa_template.tex 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  1. \documentclass{aa}
  2. \usepackage{booktabs}
  3. \usepackage{graphicx}
  4. \usepackage{txfonts}
  5. $if(texpackages)$
  6. $for(texpackages)$
  7. \usepackage
  8. $if(opts)$
  9. [
  10. $for(opts)$
  11. $opts$,
  12. $endfor$
  13. ]
  14. $endif$
  15. {$texpackages.name$}
  16. $endfor$
  17. $endif$
  18. $if(preambleinput)$
  19. $for(preambleinput)$
  20. \input{$preambleinput$}
  21. $endfor$
  22. $endif$
  23. \begin{document}
  24. \title{$title$}
  25. \author{
  26. $for(author)$
  27. $author.name$,
  28. $if(author.affiliation)$
  29. $for(author.affiliation)$
  30. \inst{1}
  31. $endfor$
  32. $endif$
  33. \and
  34. $endfor$
  35. }
  36. \institute{
  37. $for(author)$
  38. $if(author.affiliation)$
  39. $for(author.affiliation)$
  40. $author.affiliation$\\
  41. $endfor$
  42. \and
  43. $endif$
  44. $endfor$
  45. }
  46. \date{
  47. Received
  48. $if(received)$
  49. $received$
  50. $else$
  51. YYY
  52. $endif$
  53. /
  54. Accepted
  55. $if(accepted)$
  56. $accepted$
  57. $else$
  58. XXX
  59. $endif$
  60. }
  61. $if(abstract.context)$
  62. \abstract
  63. {$abstract.context$}
  64. {$abstract.aim$}
  65. {$abstract.methods$}
  66. {$abstract.results$}
  67. {$abstract.conclusions$}
  68. $else$
  69. \abstract{$abstract$}
  70. $endif$
  71. $if(keywords)$
  72. \keywords{
  73. $for(keywords)$
  74. $keywords$ --
  75. $endfor$
  76. }
  77. $endif$
  78. \maketitle
  79. $body$
  80. \end{document}