123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- % AER-Article.tex for AEA last revised 22 June 2011
- \documentclass[$journal$]{AEA}
- % The mathtime package uses a Times font instead of Computer Modern.
- % Uncomment the line below if you wish to use the mathtime package:
- %\usepackage[cmbold]{mathtime}
- % Note that miktex, by default, configures the mathtime package to use commercial fonts
- % which you may not have. If you would like to use mathtime but you are seeing error
- % messages about missing fonts (mtex.pfb, mtsy.pfb, or rmtmi.pfb) then please see
- % the technical support document at http://www.aeaweb.org/templates/technical_support.pdf
- % for instructions on fixing this problem.
- % Note: you may use either harvard or natbib (but not both) to provide a wider
- % variety of citation commands than latex supports natively. See below.
- % Uncomment the next line to use the natbib package with bibtex
- \usepackage{natbib}
- % Uncomment the next line to use the harvard package with bibtex
- %\usepackage[abbr]{harvard}
- % This command determines the leading (vertical space between lines) in draft mode
- % with 1.5 corresponding to "double" spacing.
- \draftSpacing{1.5}
- \usepackage{hyperref}
- $for(header-includes)$
- $header-includes$
- $endfor$
- \begin{document}
- \title{$title$}
- $if(short)$\shortTitle{$short$}$endif$
- % \author{Author1 and Author2\thanks{Surname1: affiliation1, address1, email1.
- % Surname2: affiliation2, address2, email2. Acknowledgements}}
- \author{
- $for(author)$
- $author.name$$sep$\\
- $endfor$
- \thanks{
- $for(author)$
- $author.surname$: $author.affiliation$, \href{mailto:$author.email$}{$author.email$}.
- $endfor$
- $if(acknowldegements)$
- $acknowledgements$
- $endif$
- }
- }
- \date{\today}
- \pubMonth{$month$}
- \pubYear{$year$}
- \pubVolume{$vol$}
- \pubIssue{$issue$}
- \JEL{$for(jel)$$jel$$sep$, $endfor$}
- \Keywords{$for(keywords)$$keywords$$sep$, $endfor$}
- \begin{abstract}
- $abstract$
- \end{abstract}
- \maketitle
- $body$
- \end{document}
|