skeleton.Rmd 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. ---
  2. title: "Untitled"
  3. short: "A shorter title"
  4. journal: "AER" # AER, AEJ, PP, JEL
  5. month: "`r format(Sys.Date(), '%m')`"
  6. year: "`r format(Sys.Date(), '%Y')`"
  7. vol: 1
  8. issue: 1
  9. jel:
  10. - A10
  11. - A11
  12. keywords:
  13. - first keyword
  14. - second keyword
  15. author:
  16. - name: Alice Anonymous
  17. firstname: Alice
  18. surname: Anonymous
  19. email: [email protected]
  20. affiliation: Some Institute of Technology
  21. - name: Bob Security
  22. firstname: Bob
  23. surname: Security
  24. email: [email protected]
  25. affiliation: Another University
  26. acknowledgements: |
  27. Acknowledgements
  28. abstract: |
  29. Abstract goes here
  30. output: rticles::aea_article
  31. ---
  32. American Economic Review Pointers:
  33. \begin{itemize}
  34. \item Do not use an "Introduction" heading. Begin your introductory material
  35. before the first section heading.
  36. \item Avoid style markup (except sparingly for emphasis).
  37. \item Avoid using explicit vertical or horizontal space.
  38. \item Captions are short and go below figures but above tables.
  39. \item The tablenotes or figurenotes environments may be used below tables
  40. or figures, respectively, as demonstrated below.
  41. \item If you have difficulties with the mathtime package, adjust the package
  42. options appropriately for your platform. If you can't get it to work, just
  43. remove the package or see our technical support document online (please
  44. refer to the author instructions).
  45. \item If you are using an appendix, it goes last, after the bibliography.
  46. Use regular section headings to make the appendix headings.
  47. \item If you are not using an appendix, you may delete the appendix command
  48. and sample appendix section heading.
  49. \item Either the natbib package or the harvard package may be used with bibtex.
  50. To include one of these packages, uncomment the appropriate usepackage command
  51. above. Note: you can't use both packages at once or compile-time errors will result.
  52. \end{itemize}
  53. \section{First Section in Body}
  54. Sample figure:
  55. \begin{figure}
  56. Figure here.
  57. \caption{Caption for figure below.}
  58. \begin{figurenotes}
  59. Figure notes without optional leadin.
  60. \end{figurenotes}
  61. \begin{figurenotes}[Source]
  62. Figure notes with optional leadin (Source, in this case).
  63. \end{figurenotes}
  64. \end{figure}
  65. Sample table:
  66. \begin{table}
  67. \caption{Caption for table above.}
  68. \begin{tabular}{lll}
  69. & Heading 1 & Heading 2 \\
  70. Row 1 & 1 & 2 \\
  71. Row 2 & 3 & 4%
  72. \end{tabular}
  73. \begin{tablenotes}
  74. Table notes environment without optional leadin.
  75. \end{tablenotes}
  76. \begin{tablenotes}[Source]
  77. Table notes environment with optional leadin (Source, in this case).
  78. \end{tablenotes}
  79. \end{table}
  80. References here (manual or bibTeX). If you are using bibTeX, add your bib file
  81. name in place of BibFile in the bibliography command.
  82. % Remove or comment out the next two lines if you are not using bibtex.
  83. \bibliographystyle{aea}
  84. \bibliography{references}
  85. % The appendix command is issued once, prior to all appendices, if any.
  86. \appendix
  87. \section{Mathematical Appendix}