Guest User

Untitled

a guest
Sep 25th, 2018
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. \documentclass[12pt,a4paper]{article}
  2.  
  3. \usepackage{amsmath}
  4. \usepackage{amssymb}
  5. \usepackage{listings}
  6. \usepackage[colorlinks,linkcolor=blue,anchorcolor=blue,citecolor=blue]{hyperref}
  7. \usepackage[margin=1in]{geometry}
  8.  
  9. \usepackage[urw-garamond]{mathdesign}
  10. \usepackage[T1]{fontenc}
  11.  
  12. \usepackage{footmisc}
  13. \renewcommand*{\footnotelayout}{\small}
  14.  
  15. \usepackage[
  16. backend=biber,
  17. autocite=inline,
  18. style=mla,
  19. citestyle=authoryear-comp,
  20. natbib=true,
  21. url=true,
  22. doi=true,
  23. eprint=true
  24. ]{biblatex}
  25.  
  26. \usepackage{setspace}
  27. \setlength{\parskip}{1em}
  28. \setstretch{1.5}
  29. \setlength{\footnotesep}{0.75\baselineskip}
  30. \renewcommand*{\bibfont}{\small}
  31.  
  32. \usepackage{lipsum}
  33. \usepackage[english]{babel}
  34. \usepackage{blindtext}
  35.  
  36. \title{Literature Survey}
  37. \author{U.N.Owen}
  38. \addbibresource{biblatex-examples.bib}
  39. \citetrackerfalse
  40.  
  41. \begin{document}
  42.  
  43. \maketitle
  44. \tableofcontents
  45. \clearpage
  46.  
  47. \section{Readme}
  48. This template is congruent with:\\
  49. 1-inch margins top/bottom/left/right;\\
  50. 1.5 line spacing; \\
  51. extra space between paragraphs; \\
  52. Garamond 12 font; \\
  53. both left and right hand justification for main text. \\
  54. References and footnotes are single space (with space between individual citations) and Garamond 11 font.
  55.  
  56. Footnotes and bibliography\footnote{Use MLA format} are also well configured.
  57.  
  58. Just add your bib file, before compiling\footnote{or change my code}. Cite papers by \autocite{aristotle:physics,markey}, or \citet{ctan,sigfridsson}.
  59.  
  60. \clearpage
  61. \Blinddocument
  62.  
  63. \clearpage
  64. \begingroup
  65. \setstretch{1}
  66. \setlength\bibitemsep{8pt}
  67. \printbibliography
  68. \endgroup
  69.  
  70. \end{document}
Add Comment
Please, Sign In to add comment