template.tex 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. \documentclass[$layout$]{ametsoc}
  2. \usepackage{color}
  3. \usepackage{hyperref}
  4. \journal{$journal$}
  5. % Please choose a journal abbreviation to use above from the following list:
  6. %
  7. % jamc (Journal of Applied Meteorology and Climatology)
  8. % jtech (Journal of Atmospheric and Oceanic Technology)
  9. % jhm (Journal of Hydrometeorology)
  10. % jpo (Journal of Physical Oceanography)
  11. % jas (Journal of Atmospheric Sciences)
  12. % jcli (Journal of Climate)
  13. % mwr (Monthly Weather Review)
  14. % wcas (Weather, Climate, and Society)
  15. % waf (Weather and Forecasting)
  16. % bams (Bulletin of the American Meteorological Society)
  17. % ei (Earth Interactions)
  18. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  19. %Citations should be of the form ``author year'' not ``author, year''
  20. \bibpunct{(}{)}{;}{a}{}{,}
  21. \title{$title$}
  22. $if(author1)$
  23. \authors{$author1$
  24. $if(correspondingauthor)$
  25. \correspondingauthor{$author1$,$correspondingauthor$}
  26. $endif$
  27. $endif$
  28. $if(author2)$
  29. and $author2$
  30. $if(currentaddress)$
  31. \thanks{$currentaddress$}}
  32. $endif$
  33. $endif$
  34. $if(affiliation)$
  35. \affiliation{$affiliation$}
  36. $endif$
  37. $if(extraauthor)$
  38. \extraauthor{Extra Author}
  39. $endif$
  40. $if(exaffiliation)$
  41. \extraaffil{$exaffiliation$}
  42. $endif$
  43. $if(email)$
  44. $email$
  45. $endif$
  46. $for(exauthors)$
  47. \extraauthor{$exauthors.name$
  48. $if(exauthors.correspondingauthor)$
  49. \correspondingauthor{$exauthors.name$,$exauthors.correspondingauthor$}
  50. $endif$
  51. $if(exauthors.currentaddress)$
  52. \thanks{$exauthors.currentaddress$}
  53. $endif$}
  54. $if(exauthors.exaffiliation)$
  55. \extraaffil{$exauthors.exaffiliation$}
  56. $endif$
  57. $if(exauthors.email)$
  58. $exauthors.email$
  59. $endif$
  60. $endfor$
  61. % pandoc header
  62. $for(header-includes)$
  63. $header-includes$
  64. $endfor$
  65. \abstract{$abstract$}
  66. \begin{document}
  67. \maketitle
  68. $for(include-before)$
  69. $include-before$
  70. $endfor$
  71. $body$
  72. $for(include-after)$
  73. $include-after$
  74. $endfor$
  75. \end{document}