Advertisement
Guest User

Untitled

a guest
Jan 19th, 2017
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. documentclass{article}
  2. usepackage{fontspec}% xelatex
  3. begin{document}
  4. section{Macro Name Scanning}
  5. defmacro{123}
  6. count1=macro
  7. 4
  8. This is a register: thecount1. Notice that the first 4 was consumed by the TeX scanner as expected.
  9.  
  10. section{Register Value Scanning}
  11. count1=42
  12. advancecount1 by1000The < The textit{T} in textit{The} should have been consumed by the TeX scanner before being typeset. Where does textbackslash relax come into play here?% Why is the T not consumed by the number scanner (catcode 12)
  13. end{document}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement