Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. % PREAMBLE %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  2.  
  3. documentclass[oneside,centered,twocolumn]{book}
  4. usepackage[T1]{fontenc}
  5. special{papersize=215.9mm,279.4mm}
  6. usepackage[english]{babel}
  7.  
  8. usepackage[sc]{mathpazo}
  9. linespread{1.05} % Palladio needs more leading (space between lines)
  10.  
  11. usepackage{tocloft} % Customization of TOC LOF LOT
  12.  
  13. makeatletter@addtoreset{chapter}{part}makeatother%
  14.  
  15. %usepackage[table,xcdraw]{xcolor} % For shading in tables
  16. usepackage[toc,page]{appendix}
  17. usepackage{xcolor} % For links color
  18. usepackage{multirow}
  19.  
  20. usepackage{epigraph}
  21. usepackage{caption} % To change way captions are labelled
  22. usepackage{pdfpages}
  23. usepackage{ltablex}
  24. usepackage{nicefrac} % to write fractions
  25. usepackage{attrib} % For source of quotations
  26. usepackage{lettrine} % For NewThought formatting
  27. usepackage{array} % To define width of columns in long table
  28. usepackage{booktabs} % Nicer spacing in columns
  29. usepackage{siunitx} % To write Celsius, etc.
  30. usepackage{enumitem} % To create item lists
  31.  
  32. usepackage{scrextend}
  33. usepackage{threeparttable} % For table notes + To allow footnote material to stay with the tabular environment
  34. usepackage{etoolbox} % To make table footnote font smaller
  35. usepackage{threeparttablex}
  36. apptoTPTnoteSettings{footnotesize}
  37. usepackage{textcomp} % For Numero symbol
  38. usepackage{titlesec}
  39.  
  40. usepackage{colortbl} % To define colors
  41. usepackage[linguistics,edges]{forest}
  42. usepackage{tikz}
  43. usetikzlibrary{calc}
  44. usepackage{titling}
  45. usepackage{fancyhdr}
  46. usepackage{etoolbox}
  47. usepackage{fontspec}
  48. setmainfont{TeX Gyre Pagella} % Palatino clone
  49. setsansfont{Cabin}
  50.  
  51. % QUOTE TEXT MARGINS + FONT SIZE %%%%%%%%%%%%%%%%%%%%%%%%
  52. usepackage[font=small,rightmargin=0pt]{quoting}
  53.  
  54. % FOOTNOTES IN QUOTATION %%%%%%%%%%%%%%%%%%%%
  55.  
  56. usepackage[symbol]{footmisc}
  57. %renewcommand{thefootnote}{fnsymbol{footnote}}
  58. renewcommand{thefootnote}{fnsymbol{footnote}}
  59.  
  60. usepackage[
  61. colorlinks,
  62. citecolor=black,
  63. filecolor=black,
  64. linkcolor=teal,
  65. urlcolor=teal
  66. ]{hyperref} % Hyperlinks
  67.  
  68. % CHAPTER, SECTION, SUBSECTION STYLE %%%%%%%%%%%%%%%%%%%%%%%%
  69.  
  70. newfontfamilyheadingfont[]{Cabin}
  71.  
  72. begin{document}
  73.  
  74. % FRONTMATTER STARTS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  75.  
  76. frontmatter
  77. {
  78. hypersetup{linkcolor=blue}textbf{}
  79. renewcommand{cftdot}{} % This line removes dots for Sections and under
  80. tableofcontents
  81. }
  82. clearpage
  83.  
  84. addcontentsline{toc}{section}{listtablename}
  85. small{listoftables}
  86. clearpage
  87.  
  88. % MAINMATTER STARTS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
  89.  
  90. mainmatter
  91.  
  92. part{Part One}
  93.  
  94. chapter{Chapter 1 of Part 1}
  95.  
  96. chapter{Chapter 2 of Part 1}
  97.  
  98. part{Part Two}
  99.  
  100. chapter{Chapter 1 of Part 2}
  101.  
  102. chapter{Chapter 2 of Part 2}
  103.  
  104. chapter{Chapter 3 of Part 2}
  105.  
  106. part{Part Three}
  107.  
  108. chapter{Chapter 1 of Part 3}
  109.  
  110. chapter{Chapter 2 of Part 3}
  111.  
  112. chapter{Chapter 3 of Part 3}
  113.  
  114. chapter{Chapter 4 of Part 3}
  115.  
  116. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement