\def 和 \edef:只扩展一层,不扩展更多
我想保存宏的内容(可能包含文本和其他宏)以供以后使用,而无需完全展开。 \def\mcr{a} \def\textandmacro{sampletext \mcr} % this content i want to recall later with unexpanded \mcr \def\save{\textandmacro} % so i save it \def\mcr{b} % the macro may change \def\textandmacro{xy} ...