(name, body)
| 13027 | const builtinMacros = {}; |
| 13028 | |
| 13029 | function defineMacro(name, body) { |
| 13030 | builtinMacros[name] = body; |
| 13031 | } ////////////////////////////////////////////////////////////////////// |
| 13032 | // macro tools |
| 13033 | // LaTeX's \@firstoftwo{#1}{#2} expands to #1, skipping #2 |
| 13034 | // TeX source: \long\def\@firstoftwo#1#2{#1} |