Advertisement
Guest User

Untitled

a guest
Sep 22nd, 2014
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.59 KB | None | 0 0
  1. documentclass{memoir}
  2. renewcommand*{thebook}{Alph{book}} % "Book A", "Book B", etc.
  3. begin{document}
  4. book{maindoc}
  5. chapter{maindoc first chapter}
  6. label{chap:maindoc-first}
  7. chapter{maindoc second chapter}
  8. label{chap:maindoc-second}
  9.  
  10. book{extradoc}
  11. setcounter{chapter}{0} % reset chapter counter with each book
  12. chapter{extradoc first chapter}
  13. label{chap:extradoc-first}
  14. chapter{extradoc second chapter}
  15. label{chap:extradoc-second}
  16. As shown in ref{chap:maindoc-first}, and further research in ref{chap:extradoc-first} ...
  17.  
  18. book{anotherdoc}
  19. setcounter{chapter}{0}
  20. chapter{anotherdoc chapter}
  21. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement