In_June

Template

Nov 26th, 2014
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.41 KB | None | 0 0
  1. \RequirePackage{filecontents}
  2. \begin{filecontents*}{\jobname.bib}
  3. @Book{theory,
  4.  author    = {Author},
  5.  title     = {Book title},
  6.  edition   = {3},
  7.  publisher = {Publisher},
  8.  year       = {2012}
  9. }
  10. \end{filecontents*}
  11.  
  12. \title{Regular Languages}
  13. \author{
  14.        Name \\
  15.                Department of\\
  16.        University \\
  17. }
  18. \date{\today}
  19.  
  20. \documentclass[12pt]{article}
  21.  
  22. \usepackage{mathtools}
  23. \usepackage{graphicx}
  24. \usepackage{framed}
  25. \usepackage{titlesec}
  26. \usepackage[numbers]{natbib}
  27.  
  28. \titleformat*{\section}{\large\bfseries}
  29.  
  30. \begin{document}
  31. \maketitle
  32. \begin{abstract}
  33. This is the paper's abstract \ldots
  34. \end{abstract}
  35. \newpage
  36. \tableofcontents
  37. \newpage
  38.  
  39.  
  40. \section{Introduction}
  41. This is time for all good men to come to the aid of their party!
  42.  
  43. \paragraph{Outline}
  44. The remainder of this article is organized as follows.
  45. Section~\ref{previous work} gives account of previous work.
  46. Our new and exciting results are described in Section~\ref{results}.
  47. Finally, Section~\ref{conclusions} gives the conclusions.
  48.  
  49. \section{Previous work}\label{previous work}
  50. A much longer \LaTeXe{} example was written by Gil~\cite{Gil:02}.
  51.  
  52. \section{Results}\label{results}
  53. In this section we describe the results.
  54.  
  55. \section{Conclusions}\label{conclusions}
  56. We worked hard, and achieved very little.\cite{theory}
  57.  
  58. \newpage
  59. \bibliographystyle{plainnat}
  60. \bibliography{\jobname}
  61. \end{document}
Add Comment
Please, Sign In to add comment