template.tex 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. % AER-Article.tex for AEA last revised 22 June 2011
  2. \documentclass[$journal$]{AEA}
  3. % The mathtime package uses a Times font instead of Computer Modern.
  4. % Uncomment the line below if you wish to use the mathtime package:
  5. %\usepackage[cmbold]{mathtime}
  6. % Note that miktex, by default, configures the mathtime package to use commercial fonts
  7. % which you may not have. If you would like to use mathtime but you are seeing error
  8. % messages about missing fonts (mtex.pfb, mtsy.pfb, or rmtmi.pfb) then please see
  9. % the technical support document at http://www.aeaweb.org/templates/technical_support.pdf
  10. % for instructions on fixing this problem.
  11. % Note: you may use either harvard or natbib (but not both) to provide a wider
  12. % variety of citation commands than latex supports natively. See below.
  13. % Uncomment the next line to use the natbib package with bibtex
  14. \usepackage{natbib}
  15. % Uncomment the next line to use the harvard package with bibtex
  16. %\usepackage[abbr]{harvard}
  17. % This command determines the leading (vertical space between lines) in draft mode
  18. % with 1.5 corresponding to "double" spacing.
  19. \draftSpacing{1.5}
  20. \usepackage{hyperref}
  21. $for(header-includes)$
  22. $header-includes$
  23. $endfor$
  24. \begin{document}
  25. \title{$title$}
  26. $if(short)$\shortTitle{$short$}$endif$
  27. % \author{Author1 and Author2\thanks{Surname1: affiliation1, address1, email1.
  28. % Surname2: affiliation2, address2, email2. Acknowledgements}}
  29. \author{
  30. $for(author)$
  31. $author.name$$sep$\\
  32. $endfor$
  33. \thanks{
  34. $for(author)$
  35. $author.surname$: $author.affiliation$, \href{mailto:$author.email$}{$author.email$}.
  36. $endfor$
  37. $if(acknowldegements)$
  38. $acknowledgements$
  39. $endif$
  40. }
  41. }
  42. \date{\today}
  43. \pubMonth{$month$}
  44. \pubYear{$year$}
  45. \pubVolume{$vol$}
  46. \pubIssue{$issue$}
  47. \JEL{$for(jel)$$jel$$sep$, $endfor$}
  48. \Keywords{$for(keywords)$$keywords$$sep$, $endfor$}
  49. \begin{abstract}
  50. $abstract$
  51. \end{abstract}
  52. \maketitle
  53. $body$
  54. \end{document}