Guest User

Untitled

a guest
May 4th, 2014
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.42 KB | None | 0 0
  1. \documentclass{article}
  2. \usepackage{filecontents}
  3. \begin{filecontents*}{packageA.sty}
  4. \DeclareOption{opt}{\PassOptionsToPackage{opt}{packageB}}
  5. \ProcessOptions
  6. \RequirePackage{packageB}% Load packageB.sty
  7. \end{filecontents*}
  8. \begin{filecontents*}{packageB.sty}
  9. \DeclareOption{opt}{\AtEndDocument{\texttt{opt} passed}}
  10. \ProcessOptions
  11. \end{filecontents*}
  12.  
  13. \usepackage[opt]{packageA}
  14.  
  15. \begin{document}
  16. test
  17. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment