skeleton.Rmd 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. ---
  2. title: Short Paper
  3. shorttitle: Short Paper
  4. shortauthor: K. T. Smith et al.
  5. authors:
  6. - name: Keith T. Smith
  7. email: [email protected]
  8. affiliations: [1]
  9. - name: A. N. Other
  10. affiliations: [2]
  11. - name: Third Author
  12. affiliations: [2,3]
  13. - name: Fourth Author
  14. affiliations: [3]
  15. affiliations:
  16. - number: 1
  17. name: Royal Astronomical Society, Burlington House, Piccadilly, London W1J 0BQ, UK
  18. - number: 2
  19. name: Department, Institution, Street Address, City Postal Code, Country
  20. - number: 3
  21. name: Another Department, Different Institution, Street Address, City Postal Code, Country
  22. abstract: |
  23. This is a simple template for authors to write new MNRAS papers.
  24. The abstract should briefly describe the aims, methods, and main results of the paper.
  25. It should be a single paragraph not more than 250 words (200 words for Letters).
  26. No references should appear in the abstract.
  27. keywords: ["keyword1", "keyword2", "keyword3"]
  28. bibliography: references.bib
  29. output: rticles::mnras_article
  30. ---
  31. # Introduction
  32. This is a simple template for authors to write new MNRAS papers. See
  33. `mnras_sample.tex` for a more complex example, and `mnras_guide.tex` for a full
  34. user guide.
  35. All papers should start with an Introduction section, which sets the work
  36. in context, cites relevant earlier studies in the field by @Others2013,
  37. and describes the problem the authors aim to solve @Author2012.
  38. # Methods, Observations, Simulations etc.
  39. Normally the next section describes the techniques the authors used. It is
  40. frequently split into subsections, such as Section \ref{maths} below.
  41. ## Maths
  42. Labels are auto--generated, i.e. this one has `\label{maths}`.
  43. Simple mathematics can be inserted into the flow of the text e.g. $2\times3=6$
  44. or $v=220$ km s$^{-1}$, but more complicated expressions should be entered as
  45. a numbered equation:
  46. \begin{equation}
  47. x=\frac{-b\pm\sqrt{b^2-4ac}}{2a}
  48. \label{eq:quadratic}
  49. \end{equation}
  50. Refer back to them as e.g. equation (\ref{eq:quadratic}).
  51. ## Figures and tables
  52. Figures and tables should be placed at logical positions in the text. Don't
  53. worry about the exact layout, which will be handled by the publishers.
  54. Figures are referred to as e.g. Fig. \ref{fig:example_figure}, and tables as
  55. e.g. Table \ref{tab:example_table}.
  56. \begin{figure}
  57. % To include a figure from a file named example.*
  58. % Allowable file formats are eps or ps if compiling using latex
  59. % or pdf, png, jpg if compiling using pdflatex
  60. \includegraphics[width=\columnwidth]{example}
  61. \caption{This is an example figure. Captions appear below each figure.
  62. Give enough detail for the reader to understand what they're looking at,
  63. but leave detailed discussion to the main body of the text.}
  64. \label{fig:example_figure}
  65. \end{figure}
  66. \begin{table}
  67. \centering
  68. \caption{This is an example table. Captions appear above each table.
  69. Remember to define the quantities, symbols and units used.}
  70. \label{tab:example_table}
  71. \begin{tabular}{lccr} % four columns, alignment for each
  72. \hline
  73. A & B & C & D\\
  74. \hline
  75. 1 & 2 & 3 & 4\\
  76. 2 & 4 & 6 & 8\\
  77. 3 & 5 & 7 & 9\\
  78. \hline
  79. \end{tabular}
  80. \end{table}
  81. # Conclusions
  82. The last numbered section should briefly summarise what has been done, and
  83. describe the final conclusions which the authors draw from their work.
  84. # Acknowledgements {-}
  85. The Acknowledgements section is not numbered. Here you can thank helpful
  86. colleagues, acknowledge funding agencies, telescopes and facilities used etc.
  87. Try to keep it short.
  88. # References {-}
  89. <div id="refs"></div>
  90. \appendix
  91. # Some extra material
  92. If you want to present additional material which would interrupt the flow of the
  93. main paper, it can be placed in an Appendix which appears after the list of
  94. references.