Advertisement
Guest User

Untitled

a guest
Apr 24th, 2015
277
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Latex 0.37 KB | None | 0 0
  1. \documentclass[a4paper]{scrreprt}
  2. \newcommand{\cmd}{\begingroup
  3.  \catcode`_=12 \cmdint}
  4. \newcommand{\cmdint}[1]{%
  5.   \texttt{#1}%
  6.   \endgroup
  7. }
  8.  
  9. \newenvironment{wrap}{}{}
  10. \usepackage{environ}
  11. \NewEnviron{wrap2}{\BODY}
  12.  
  13. \begin{document}
  14. \cmd{some_test}
  15.  
  16. \begin{wrap}
  17.  \cmd{some_test}
  18. \end{wrap}
  19.  
  20. \begin{wrap2}
  21.  \cmd{some_test}
  22. \end{wrap2}
  23. \end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement