Advertisement
Guest User

Untitled

a guest
Jun 17th, 2019
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{expl3}
  3.  
  4. begin{document}
  5. ExplSyntaxOn
  6. tl_new:N l_foo_tl
  7. tl_set:Nn l_foo_tl {x}
  8.  
  9. tl_use:N l_foo_tl
  10. tl_map_variable:nNn {abc} l_foo_tl {tl_use:N l_foo_tl}
  11. tl_use:N l_foo_tl
  12.  
  13. ExplSyntaxOff
  14. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement