Guest User

Untitled

a guest
Oct 1st, 2018
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.54 KB | None | 0 0
  1. documentclass[12pt, a4, openany, oneside]{book}
  2. renewcommand{baselinestretch}{1.6}
  3. usepackage[left=1.5in,top=1.0in,right=1.0in,bottom=1.0in]{geometry}
  4. %setlrmarginsandblock{2.5cm}{2.5cm}{*} % Left and right margin
  5. %setulmarginsandblock{3cm}{3cm}{*} % Upper and lower margin
  6. %checkandfixthelayout
  7.  
  8. makeatletter
  9. renewcommandparagraph{@startsection{paragraph}{5}{z@}%
  10. {-2.5ex@plus -1ex @minus -.25ex}%
  11. {1.25ex @plus .25ex}%
  12. {normalfontnormalsizebfseries}}
  13.  
  14. renewcommandsubparagraph{%
  15. @startsection {subparagraph}{5}{z@ }{2.25ex @plus 1ex
  16. @minus .2ex}{-1em}{normalfont normalsize bfseries }}%
  17.  
  18.  
  19. usepackage{enumitem}
  20. setlistdepth{9} % deep listing to 6th level (9- 6(by default))
  21. newlist{myenumerate}{enumerate}{9} % deep listing
  22. setlist[myenumerate]{label*=arabic*.}
  23. setlist[enumerate]{label*=arabic*.} % for default level
  24.  
  25.  
  26. %margin
  27. %usepackage[top=1in, bottom=1in, left=1.25in, right=1.25in]{geometry}
  28.  
  29.  
  30. usepackage{tikz}
  31. usetikzlibrary{calc}
  32. usepackage[english]{babel}
  33.  
  34.  
  35.  
  36. begin{document}
  37.  
  38.  
  39. %paragraph spacing
  40. %setlength{parskip}{baselineskip}%
  41.  
  42. setlength{parindent}{0em}
  43. setlength{parskip}{1em}
  44.  
  45. begin{titlepage}
  46.  
  47. begin{tikzpicture}[remember picture,overlay,inner sep=0.5,outer sep=0]
  48. draw[blue!70!black,line width=4pt] ([xshift=-1.5cm,yshift=-2cm]current page.north east) coordinate (A)--([xshift=1.5cm,yshift=-2cm]current page.north west) coordinate(B)--([xshift=1.5cm,yshift=2cm]current page.south west) coordinate (C)--([xshift=-1.5cm,yshift=2cm]current page.south east) coordinate(D)--cycle;
  49.  
  50. draw ([yshift=0.5cm,xshift=-0.5cm]A)-- ([yshift=0.5cm,xshift=0.5cm]B)--
  51. ([yshift=-0.5cm,xshift=0.5cm]B) --([yshift=-0.5cm,xshift=-0.5cm]B)--([yshift=0.5cm,xshift=-0.5cm]C)--([yshift=0.5cm,xshift=0.5cm]C)--([yshift=-0.5cm,xshift=0.5cm]C)-- ([yshift=-0.5cm,xshift=-0.5cm]D)--([yshift=0.5cm,xshift=-0.5cm]D)--([yshift=0.5cm,xshift=0.5cm]D)--([yshift=-0.5cm,xshift=0.5cm]A)--([yshift=-0.5cm,xshift=-0.5cm]A)--([yshift=0.5cm,xshift=-0.5cm]A);
  52.  
  53.  
  54. draw ([yshift=-0.3cm,xshift=0.3cm]A)-- ([yshift=-0.3cm,xshift=-0.3cm]B)--
  55. ([yshift=0.3cm,xshift=-0.3cm]B) --([yshift=0.3cm,xshift=0.3cm]B)--([yshift=-0.3cm,xshift=0.3cm]C)--([yshift=-0.3cm,xshift=-0.3cm]C)--([yshift=0.3cm,xshift=-0.3cm]C)-- ([yshift=0.3cm,xshift=0.3cm]D)--([yshift=-0.3cm,xshift=0.3cm]D)--([yshift=-0.3cm,xshift=-0.3cm]D)--([yshift=0.3cm,xshift=-0.3cm]A)--([yshift=0.3cm,xshift=0.3cm]A)--([yshift=-0.3cm,xshift=0.3cm]A);
  56.  
  57. end{tikzpicture}
  58.  
  59.  
  60. begin{center}
  61.  
  62.  
  63.  
  64.  
  65.  
  66. vspace{.3cm}
  67. textbf{large{uppercase{This is the title of the thesis}}}
  68.  
  69. end{center}
  70. end{titlepage}
  71. end{document}
Add Comment
Please, Sign In to add comment