2023-03-05から1日間の記事一覧

\noexpand何もわからん・続編

マクロ設定 \def\A#1#2{#1 is #2} \def\B{\BB\BB} \def\BB{foo} \def\C{bar} 前回の結果 \edef\hoge{\noexpand\B\C} % -> \def\hoge{\B bar} \expandafter\A\hoge % -> \A\B bar -> \B is bar -> \BB\BB is bar -> foofoo is bar 出力:foofoo is bar \edef\…

\noexpand何もわからん

マクロ設定 \def\A#1#2{#1 is #2} \def\B{\BB\BB} \def\BB{foo} \def\C{bar} noexpandの挙動実験 \edef\hoge{\noexpand\B\C} % -> \def\hoge{\Bbar} \expandafter\A\hoge % -> \A\Bbar -> \B is bar -> \BB\BB is bar -> foofoo is bar 出力:foofoo is bar …