Guest User

Untitled

a guest
Mar 23rd, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. newenvironment{foo}%
  2. {%
  3. %
  4. newcommandbara{}%
  5. newcommandbarb[1]{%
  6. renewcommandbara{##1}%
  7. typeout{FIRST}%
  8. typeout{##1}{bara}%
  9. }%
  10.  
  11. newenvironment{baz}%
  12. {%
  13. begin{figure}[!h]%
  14. centering%
  15. begin{tikzpicture}{scale=1}%
  16. }%
  17. {%
  18. typeout{SECOND}%
  19. typeout{bara}%
  20. end{tikzpicture}%
  21. typeout{bara}%
  22. caption{bara}%
  23. end{figure}%
  24. }%
  25. }%
  26. {}%
  27.  
  28. begin{foo}
  29. begin{baz}
  30. bara{abc}
  31. end{baz}
  32. end{foo}
  33.  
  34. FIRST
  35. abc
  36. SECOND
  37. abc
  38. [blank]
  39.  
  40. FIRST
  41. abc
  42. SECOND
  43. abc
  44. abc
  45.  
  46. documentclass{article}
  47. makeatletter
  48. newenvironment{foo}%
  49. {%
  50. %
  51. newcommand@bar{}%
  52. renewcommandbar[1]{%
  53. renewcommand@bar{##1}%
  54. typeout{FIRST}%
  55. typeout{##1}{@bar}%
  56. }%
  57. %
  58. newenvironment{baz}%
  59. {%
  60. }%
  61. {%
  62. typeout{SECOND}%
  63. typeout{@bar}%
  64. }%
  65. }%
  66. {}%
  67. makeatother
  68.  
  69. begin{document}
  70. begin{foo}
  71. begin{baz}
  72. bar{abc}
  73. end{baz}
  74. end{foo}
  75. end{document}
  76.  
  77. % latex tmp.tex
  78. [snip]
  79. FIRST
  80. abc
  81. SECOND
  82. abc
  83. [snip]
  84. Output written on tmp.pdf (1 page, 11670 bytes).
  85. Transcript written on tmp.log.
Add Comment
Please, Sign In to add comment