Advertisement
Guest User

Untitled

a guest
May 24th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.37 KB | None | 0 0
  1. % A simple example showing how to create Harvard style referencing in LaTeX
  2. %
  3. % See http://tex.stackexchange.com/questions/102662/harvard-reference-using-biblatex
  4. % for further discussion
  5. \documentclass[a4paper]{article}
  6.  
  7. \usepackage[english]{babel}
  8. \usepackage[utf8]{inputenc}
  9. \usepackage{amsmath}
  10. \usepackage{csquotes}% Recommended
  11. \usepackage{graphicx}
  12. \usepackage{tabulary}
  13. \newcolumntype{K}[1]{>{\centering\arraybackslash}p{#1}}
  14.  
  15.  
  16. \usepackage[style=authoryear-ibid,backend=biber]{biblatex}
  17.  
  18. \addbibresource{sample.bib}% Syntax for version >= 1.2
  19.  
  20. \title{The effect of an increase in VAT on the poor}
  21. \author{Jorich Loubser, Gregory Muller, Samantha Culligan, \\
  22. Jian-Yi Song, Nadia Naidu}
  23. \date{10 May 2018}
  24.  
  25. \begin{document}
  26.  
  27.  
  28. \newpage
  29.  
  30. \begin{titlepage}
  31. \centering
  32. \vspace*{0.2 cm}
  33. \includegraphics[scale = 0.75]{UCT_logo.jpg}\\[1.0 cm] % University Logo
  34. \textsc{\LARGE University of Cape Town}\\[2.0 cm] % University Name
  35. \textsc{\Large School of Economics}\\[0.5 cm] % Course Code
  36. \textsc{\large The effect of an increase in VAT on the poor}\\ %JORICH! HERE IS WHERE YOU CHANGE THE TITLE THAT'S ON THE COVER PAG
  37. {\today}
  38. \\[0.5 cm] % Course Name
  39. \rule{\linewidth}{0.2 mm} \\[0.4 cm]
  40. \begin{enumerate}
  41.  
  42. \item I know that plagiarism is wrong. Plagiarism is to use another’s work and pretend that it is one’s own.
  43. \item This paper is our own work
  44. \item I have used the Harvard convention for citation and referencing. Each
  45. significant contribution to, and quotation in, this paper from the work(s) of other people has been
  46. attributed, and has been cited and referenced.
  47. \item I have not allowed, and will not allow, anyone to copy my work with the intention of passing it off as their own work.
  48. \\
  49.  
  50. \end{enumerate}
  51. %{ \huge \bfseries \thetitle}\\
  52. \rule{\linewidth}{0.2 mm} \\[1.5 cm]
  53.  
  54. \begin{minipage}{0.4\textwidth}
  55. \begin{flushleft}
  56. \emph{Authors:}\\
  57.  
  58. Jorich Loubser, Gregory Muller, Samantha Culligan, Jian-Yi Song, Nadia Naidu
  59.  
  60.  
  61.  
  62. \end{flushleft}
  63. \end{minipage}
  64. \begin{minipage}{0.4\textwidth}
  65. \begin{flushright}
  66. \emph{Student Number:} \\
  67. LBSJOH001, MLLGRE015, CLLSAM004, SNGJIA001, NDXNAD011
  68.  
  69.  
  70. % Your Student Number
  71. \end{flushright}
  72. \end{minipage}\\[2 cm]
  73.  
  74.  
  75. %\vfill
  76.  
  77. \end{titlepage}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement