/ Published in: LaTeX
These four LaTeX control sequences are workalikes of the built-ins \show, \showthe and \def and of a command sequence call. Unlike the usual variants, they work on internal macros which contain characters with the "wrong" category code, such as "@". They take the name of the command sequence (without the leading "\") as their argument.
The \scrollmode is not necessary, it just saves you pressing Return for every listing output. The \obeyspaces is needed only if you want to display or manipulate control sequences whose names contain spaces.
Gratuitous use of \don and/or \defn will probably break LaTeX.
The \scrollmode is not necessary, it just saves you pressing Return for every listing output. The \obeyspaces is needed only if you want to display or manipulate control sequences whose names contain spaces.
Gratuitous use of \don and/or \defn will probably break LaTeX.
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
\scrollmode \obeyspaces \def\showthen#1{\expandafter\showthe\csname\string#1\endcsname} \def\don#1{\csname\string#1\endcsname} % example usage: % show listing of \x@protect \shown{@startsection} % show the value of the skip \@tempskipa \showthen{@tempskipa} % execute control sequence "\\ " \don{\ } % redefine \@startsection (works like \def) \defn{@startsection}{\relax} % use at your own risk. user forfeits all rights to data integrity, mental health, world order, cookies.
URL: http://www.volkerschatz.com/tex/show.html