Advertisement
Guest User

Untitled

a guest
Mar 23rd, 2017
55
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. documentclass[10pt]{memoir}
  2.  
  3. usepackage{lipsum}
  4. usepackage{etoc}
  5.  
  6. makeatletter
  7. newcommandimmaddtocontents[1]{{%
  8. letprotect@unexpandable@protect%
  9. immediatewrite@auxout{noexpand@writefile{toc}{#1}}%
  10. }}
  11. makeatother
  12.  
  13. %Add Rule to Contents, Write Immediately, Will Replace With Image Later
  14. newcommand{ruleincontents}{%
  15. immaddtocontents{nobreaksmallskip rule{3in}{1mm}par}
  16. }%
  17.  
  18. begin{document}
  19.  
  20. frontmatter
  21. tableofcontents
  22.  
  23. ruleincontents{}
  24.  
  25. mainmatter
  26. chapter{Chapter 1}
  27. section{Ch1, Sec1}
  28. lipsum[1]
  29. section{Ch1, Sec2}
  30. lipsum[1]
  31. section{Ch1, Sec3}
  32. lipsum[1]
  33. chapter{Chapter 2}
  34. etocsettocdepth.toc{section}
  35. etocsettocstyle{section*{Local~contentsname}}{}
  36. localtableofcontents*
  37. section{Ch2, Sec1}
  38. lipsum[1]
  39. section{Ch2, Sec2}
  40. lipsum[1]
  41. section{Ch2, Sec3}
  42. lipsum[1]
  43.  
  44. clearpage
  45. appendix
  46. ruleincontents{}
  47. chapter{Appendixes}
  48. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement