Advertisement
Guest User

Untitled

a guest
Jan 31st, 2018
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 1.22 KB | None | 0 0
  1. \documentclass{asuthesis}
  2.  
  3. \usepackage{lipsum}
  4.  
  5. % Document Metadata
  6.  
  7. \title{
  8.    Foo Bar Baz:\\
  9.    Hello World
  10. }
  11. \author{John Doe}
  12. \degreetype{Doctor of Philosophy}
  13. \doctype{Dissertation}
  14. \defensemonth{TBD}
  15. \defenseyear{TBD}
  16. \gradmonth{TBD}
  17. \gradyear{TBD}
  18. \listadd{\chairperson}{Dr.\ Jane Doe}
  19. \listadd{\committeeperson}{Dr.\ Joe Shmoe}
  20.  
  21. \begin{document}
  22.  
  23. % setup the title and copyright pages
  24. \maketitle
  25. \copyrightpage
  26. \clearpage
  27.  
  28. % setup the front matter
  29. \frontmatter
  30.  
  31. % setup the abstract
  32. \pagestyle{asu}
  33. \chapterstyle{asu}
  34. \begin{abstract}
  35.    \lipsum[1-2]
  36. \end{abstract}
  37. \newpage
  38.  
  39. % setup the acknowledgments
  40. \pagestyle{asu}
  41. \chapterstyle{asu}
  42. \begin{acknowledgments}
  43.    \lipsum[1-2]
  44. \end{acknowledgments}
  45. \newpage
  46.  
  47. % insert the TOC, LOF, and LOT
  48. \asutables
  49.  
  50. % setup the mainmatter
  51.  
  52. \mainmatter
  53. \pagestyle{asu}
  54. \chapterstyle{asu}
  55.  
  56. % include individual chapters
  57. \chapter{SAMPLE CHAPTER}
  58.  
  59. \lipsum[1-3]
  60.  
  61. \chapter{ANOTHER CHAPTER}
  62.  
  63. \lipsum[1-3]
  64.  
  65. \bibliographystyle{plain}
  66. \bibliography{publications-phd,references-phd}
  67.  
  68. % setup the appendices
  69.  
  70. \begin{appendices}
  71. \chapter{SAMPLE APPENDIX}
  72. \lipsum[1-2]
  73. \end{appendices}
  74.  
  75. % setup the backmatter
  76. \backmatter
  77.  
  78. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement