Guest User

Untitled

a guest
Oct 22nd, 2017
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.45 KB | None | 0 0
  1. documentclass{report}
  2. begin{document}
  3. tableofcontents
  4. clearpage
  5. chapter{TEST}
  6. section{Introduction}
  7. section{Test section one}
  8. subsection{Test subsection}
  9. subsection{Test subsection}
  10. subsubsection{Test subsubsection}
  11. subsection{Test subsection}
  12. end{document}
  13.  
  14. documentclass{report}
  15. %%%%%ADDED CODE%%%%%
  16. usepackage{titletoc}%
  17. titlecontents{chapter}% <section-type>
  18. [0pt]% <left>
  19. {bfseries}% <above-code>
  20. {chaptername thecontentslabel:quad}% <numbered-entry-format>
  21. {}% <numberless-entry-format>
  22. {hfillcontentspage}% <filler-page-format>
  23. %%%%%%END OF ADDED CODE%%%%%
  24.  
  25. begin{document}
  26. tableofcontents
  27. clearpage
  28. chapter{TEST}
  29. section{Introduction}
  30. section{Test section one}
  31. subsection{Test subsection}
  32. subsection{Test subsection}
  33. subsubsection{Test subsubsection}
  34. subsection{Test subsection}
  35. end{document}
  36.  
  37. usepackage[titles]{tocloft}
  38. renewcommandcftchappresnum{Chapter }
  39. renewcommandcftchapaftersnum{:}
  40. newlengthmylen
  41. settowidthmylen{bfseries Chapter 1: } % if more than 9 chapters, use "Chapter 10"
  42. cftsetindents{chap}{0pt}{mylen}
  43.  
  44. documentclass{report}
  45.  
  46. usepackage[titles]{tocloft}
  47. renewcommandcftchappresnum{Chapter }
  48. renewcommandcftchapaftersnum{:}
  49. newlengthmylen
  50. settowidthmylen{bfseries Chapter 1: }
  51. cftsetindents{chap}{0pt}{mylen}
  52.  
  53. begin{document}
  54. tableofcontents
  55.  
  56. chapter{TEST}
  57. section{Introduction}
  58. section{Test section one}
  59. subsection{Test subsection}
  60. subsection{Test subsection}
  61. subsubsection{Test subsubsection}
  62. subsection{Test subsection}
  63. end{document}
Add Comment
Please, Sign In to add comment