Guest User

Untitled

a guest
Dec 12th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. documentclass{report}
  2.  
  3. makeatletter
  4. newcommand{unchapter}[1]{%
  5. begingroup
  6. let@makechapterhead@gobble % make @makechapterhead do nothing
  7. chapter{#1}
  8. endgroup
  9. }
  10. makeatother
  11.  
  12. pagestyle{headings}
  13.  
  14. begin{document}
  15. tableofcontents
  16.  
  17. chapter{Regular}
  18.  
  19. Text
  20.  
  21. unchapter{No chapter head}
  22.  
  23. Textnewpage
  24. text: check the heading
  25.  
  26. chapter{This is regular again}
  27.  
  28. end{document}
Add Comment
Please, Sign In to add comment