Guest User

Untitled

a guest
Mar 20th, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. documentclass{memoir}
  2. usepackage{letltxmacro}
  3. LetLtxMacro{oldsection}{section}
  4. renewcommand{section}[2][]{oldsection[#1]{#2}index{#1}label{sec:#1}}
  5.  
  6. LetLtxMacro{oldchapter}{chapter}
  7. renewcommand{chapter}[2][]{oldchapter[#1]{#2}index{#1}label{chap:#1}}
  8.  
  9. begin{document}
  10. chapter[ABC]{ABC}
  11. section[One]{One}
  12. section{Two}
  13. section*[Three]{Three}
  14. Test reference ref{chap:ABC}
  15. Test reference ref{chap:XYZ}
  16. Test reference ref{sec:One}
  17. Test reference ref{sec:Two}
  18. chapter{DEF}
  19. chapter*[XYZ]{XYZ}
  20. end{document}
Add Comment
Please, Sign In to add comment