Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.47 KB | None | 0 0
  1. documentclass[12pt,twoside]{Thesis} % The default font size and one-sided printing (no margin offsets)
  2. graphicspath{{Pictures/}} % Specifies the directory where pictures are stored
  3. usepackage[letterpaper,total={5.5in,9in}, top=1.0in, inner=1.5in, outer=1.0in,bottom=1.0in,,headheight=0pt,headsep=0pt,centering]{geometry}
  4. usepackage{fancyhdr}
  5. pagestyle{fancy}
  6. usepackage[square, numbers, comma, sort&compress]{natbib} % Use the natbib reference package - read up on this to edit the reference style; if you want text (e.g. Smith et al., 2012) for the in-text references (instead of numbers), remove 'numbers'
  7. hypersetup{urlcolor=blue, colorlinks=true} % Colors hyperlinks in blue - change to black if annoying
  8. title{ttitle} % Defines the thesis title - don't touch this
  9.  
  10. begin{document}
  11.  
  12. frontmatter % Use roman page numbering style (i, ii, iii, iv...) for the pre-content pages
  13.  
  14. setstretch{1.6} % Line spacing of 1.3
  15.  
  16. % Define the page headers using the FancyHdr package and set up for one-sided printing
  17. fancyhead{} % Clears all page headers and footers
  18. rhead{thepage} % Sets the right side header to show the page number
  19. lhead{} % Clears the left side page header
  20. %pagestyle{fancy} % Finally, use the "fancy" page style to implement the FancyHdr headers
  21.  
  22. newcommand{HRule}{rule{linewidth}{0.5mm}} % New command to make the lines in the title page
  23.  
  24. % PDF meta-data
  25. hypersetup{pdftitle={ttitle}}
  26. hypersetup{pdfsubject=subjectname}
  27. hypersetup{pdfauthor=authornames}
  28. hypersetup{pdfkeywords=keywordnames}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement