Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.17 KB | None | 0 0
  1. PassOptionsToPackage{pdfpagelabels=false}{hyperref}
  2. documentclass[fleqn,usenatbib,usedcolumn]{mnras}
  3. usepackage[british]{babel} % British English hyphenation
  4. usepackage{newtxtext} % Good fonts
  5. usepackage{newtxmath}
  6. usepackage[T1]{fontenc} % Good font encoding
  7. usepackage{ae,aecompl}
  8. usepackage{graphics}
  9. usepackage{graphicx} % Including figures
  10. %%%%%%%%%%%%%%%%%%% TITLE PAGE %%%%%%%%%%%%%%%%%%%
  11.  
  12. % Title of the paper, and the short title which is used in the headers.
  13. % Keep the title short and informative.
  14. title[Short title, max. 45 characters]{MNRAS LaTeXe template -- title goes here}
  15.  
  16. % The list of authors, and the short list which is used in the headers.
  17. % If you need two or more lines of authors, add an extra line using newauthor
  18. author[K. T. Smith et al.]{
  19. Keith T. Smith,$^{1}$thanks{E-mail: mn@ras.org.uk (KTS)}
  20. A. N. Other,$^{2}$
  21. Third Author$^{2,3}$
  22. and Fourth Author$^{3}$
  23. \
  24. % List of institutions
  25. $^{1}$Royal Astronomical Society, Burlington House, Piccadilly, London W1J 0BQ, UK\
  26. $^{2}$Department, Institution, Street Address, City Postal Code, Country\
  27. $^{3}$Another Department, Different Institution, Street Address, City Postal Code, Country
  28. }
  29.  
  30. % These dates will be filled out by the publisher
  31. date{Accepted XXX. Received YYY; in original form ZZZ}
  32.  
  33. % Enter the current year, for the copyright statements etc.
  34. pubyear{2015}
  35.  
  36. % Don't change these lines
  37. begin{document}
  38. label{firstpage}
  39. pagerange{pageref{firstpage}--pageref{lastpage}}
  40. maketitle
  41.  
  42. % Abstract of the paper
  43. begin{abstract}
  44. This is a simple template for authors to write new MNRAS papers.
  45. The abstract should briefly describe the aims, methods, and main results of the paper.
  46. It should be a single paragraph not more than 250 words (200 words for Letters).
  47. No references should appear in the abstract.
  48. end{abstract}
  49.  
  50. % Select between one and six entries from the list of approved keywords.
  51. % Don't make up new ones.
  52. begin{keywords}
  53. keyword1 -- keyword2 -- keyword3
  54. end{keywords}
  55.  
  56. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  57.  
  58. %%%%%%%%%%%%%%%%% BODY OF PAPER %%%%%%%%%%%%%%%%%%
  59.  
  60. section{Methods, Observations, Simulations etc.}
  61.  
  62. Normally the next section describes the techniques the authors used.
  63. It is frequently split into subsections, such as Section~ref{sec:maths} below.
  64.  
  65. subsection{Maths}
  66. label{sec:maths} % used for referring to this section from elsewhere
  67. Simple mathematics can be inserted into the flow of the text e.g. $2times3=6$ or $v=220$,km,s$^{-1}$, but more complicated expressions should be entered as a numbered equation:
  68.  
  69. begin{equation}
  70. x=frac{-bpmsqrt{b^2-4ac}}{2a}.
  71. label{eq:quadratic}
  72. end{equation}
  73.  
  74. Refer back to them as e.g. equation~(ref{eq:quadratic}).
  75.  
  76. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  77.  
  78. %%%%%%%%%%%%%%%%%%%% REFERENCES %%%%%%%%%%%%%%%%%%
  79.  
  80. The best way to enter references is to use BibTeX:
  81.  
  82. bibliographystyle{mnras}
  83. bibliography{example} % if your bibtex file is called example.bib
  84.  
  85. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  86. %%%%%%%%%%%%%%%%% APPENDICES %%%%%%%%%%%%%%%%%%%%%
  87. appendix
  88. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  89. % Don't change these lines
  90. bsp % typesetting comment
  91. label{lastpage}
  92. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement