Advertisement
Guest User

Untitled

a guest
Jul 2nd, 2015
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. documentclass{book}
  2. usepackage[utf8]{inputenc}
  3. usepackage{tocloft}
  4. usepackage{hyperref}
  5.  
  6. begin{document}
  7.  
  8. tableofcontents
  9.  
  10. %======== USING REGULAR ENTRIES ========
  11. chapter{Chapter 1} % properly linked of course
  12. {LARGE This is chapter 1}
  13.  
  14. section{Section 1-1} % well linked as well
  15. {LARGE This is chapter 1 section 1}
  16. clearpage
  17.  
  18. %======== USING addcontentsline ========
  19. phantomsection
  20. addcontentsline{toc}{chapter}{Chapter 2} % works fine
  21. {LARGE This is chapter 2}
  22. clearpage
  23.  
  24. phantomsection
  25. addcontentsline{toc}{section}{Section 2-1} % link works
  26. {LARGE This is chapter 2 section 1}
  27. clearpage
  28.  
  29. %======== USING addtocontents ========
  30. phantomsection
  31. addtocontents{toc}{protectcontentsline{chapter} % this link does not work
  32. {protectnumberline{3}Chapter 3}{thepage}{}}
  33. {LARGE This is chapter 3}
  34. clearpage
  35.  
  36. phantomsection
  37. addtocontents{toc}{protectcontentsline{section}{protectnumberline{3-1}Section 3-1}{thepage}{section*.2.4}} % ... neither does this
  38. {LARGE This is chapter 3 section 1}
  39. clearpage
  40.  
  41. end{document}
  42.  
  43. chapter*.thechapter
  44. chapter*.thepage
  45. section*.thesection
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement