aa_template.tex 1.1 KB

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