I am learning the macro of my CTeX and I want to know the explanation of the code in the sample TeX file. How can I get the detailed information of the code? For example:
Code: Select all
\global\let\myempty=\@empty
\global
is for defining a global variable and \let is for assigning \empty
to \myempty
. Then what is \empty
? Can I get into \empty
for detailed information?I need your help.