TeX/csname
< TeX
Synopsis
edit\csname
Description
editUsed with \endcsname. The text between the two commands build the name of a TeX command.
Example
edit \def\x{paragraph}
% \def\startparagraph#1{...}
\def\csname start\x\endcsname#1{...}
% \def\stopparagraph#1{...}
\def\csname stop\x\endcsname#1{...}
% \startparagraph{mytext}
\csname start\x\endcsname{mytext}