Advertisement
Guest User

Untitled

a guest
Aug 2nd, 2015
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.89 KB | None | 0 0
  1. documentclass[11pt,oneside]{book}
  2. usepackage{titlesec}
  3. % Below "section" can be replaced with "subsection" and "subsubsection"
  4. % in order to customize the corresponding headings. "bch" - Bitstream
  5. % Charter, "b" - bold.
  6. titleformat{section}[hang]
  7. {usefont{T1}{bch}{b}{n}selectfont}
  8. {} % label
  9. {0em} % horizontal separation between label and title body
  10. {hspace{-0.4pt}Large thesectionhspace{0.6em}} % before-code
  11. [] % after-code
  12.  
  13. titleformat
  14. {chapter} % command
  15. [display] % shape
  16. {normalfonthugebfseries} % format
  17. {chaptertitlename thechapter} % label
  18. {20pt} % sep
  19. {Huge}[vspace{2ex}titlerule] % before-code
  20.  
  21. begin{document}
  22. maketitle
  23. chapter*{Abstract}
  24. Lorem Ipsum etc. etc.
  25. end{document}
  26.  
  27. documentclass[11pt,oneside]{book}
  28. usepackage{titlesec}
  29. % Below "section" can be replaced with "subsection" and "subsubsection"
  30. % in order to customize the corresponding headings. "bch" - Bitstream
  31. % Charter, "b" - bold.
  32. titleformat{section}[hang]
  33. {usefont{T1}{bch}{b}{n}selectfont}
  34. {} % label
  35. {0em} % horizontal separation between label and title body
  36. {hspace{-0.4pt}Large thesectionhspace{0.6em}} % before-code
  37. [] % after-code
  38.  
  39. titleformat
  40. {chapter} % command
  41. [display] % shape
  42. {normalfonthugebfseries} % format
  43. {chaptertitlename thechapter} % label
  44. {20pt} % sep
  45. {Huge}[vspace{2ex}titlerule] % before-code
  46.  
  47. titleformat
  48. {name=chapter,numberless} % command
  49. [display] % shape
  50. {normalfonthugebfseries} % format
  51. {} % label
  52. {0pt} % sep
  53. {Huge}[vspace{2ex}titlerule] % before-code %% adjust 2ex here as you want.
  54.  
  55. begin{document}
  56. %maketitle
  57. chapter*{Abstract}
  58. Lorem Ipsum etc. etc.
  59. end{document}
  60.  
  61. titlespacing*{chapter} {0pt}{50pt}{40pt}
  62.  
  63. titlespacing*{name=chapter,numberless} {0pt}{50pt}{40pt}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement