Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 KB | None | 0 0
  1. documentclass{book}
  2.  
  3. usepackage{blindtext}
  4. usepackage{xparse}
  5.  
  6.  
  7. makeatletter
  8.  
  9. letlatex@chapterchapter
  10.  
  11. defcurrentchaptername{}
  12.  
  13. NewDocumentCommand{notocchapter}{om}{%
  14. IfValueTF{#1}{%
  15. defcurrentchaptername{#1}
  16. }{%
  17. defcurrentchaptername{#2}
  18. }%
  19. begingroup
  20. renewcommand{addcontentsline}[3]{}% Do nothing for this chapter
  21. IfValueTF{#1}{%
  22. latex@chapter[#1]{#2}
  23. }{%
  24. latex@chapter{#2}
  25. }%
  26. endgroup
  27. }
  28.  
  29. NewDocumentCommand{lookslikeachapterentrybutpointstosomewhereelse}{o}{%
  30. phantomsection
  31. IfValueTF{#1}{%
  32. addcontentsline{toc}{chapter}{protectnumberline{thechapter}#1}%
  33. }{%
  34. addcontentsline{toc}{chapter}{protectnumberline{thechapter}currentchaptername}
  35. }%
  36. }
  37.  
  38. makeatother
  39.  
  40. usepackage[linktocpage]{hyperref}
  41.  
  42.  
  43. begin{document}
  44.  
  45. tableofcontents
  46.  
  47. notocchapter{Some chapter}
  48.  
  49. blindtext[20]
  50.  
  51. lookslikeachapterentrybutpointstosomewhereelse
  52.  
  53. chapter{Some other chapter}
  54.  
  55. notocchapter{Another chapter}
  56.  
  57. blindtext[40]
  58.  
  59. lookslikeachapterentrybutpointstosomewhereelse[And now for something completely different]
  60.  
  61.  
  62. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement