blob: 0d6e92a218def0e49ebb76c2eb9aa73d66410c5b [file] [log] [blame]
Eisuke Kawashimaa35040f2025-02-08 18:32:14 +01001\documentclass{article}
2\newcommand{\foo}{}
3\renewcommand*{\foo}[1]{#10}
4\providecommand{\foo}[1][default]{#11}
5\newenvironment*{baz}{START}{STOP}
6\renewenvironment{baz}[1]{HEAD of #12:}{TAIL}
7\renewenvironment*{baz}[1][default]{BEGINNING of #12:}{END}
8\begin{document}
9\foo{TeX} % -> TeX0
10\begin{baz} tex \end{baz} % -> BEGINNING of default2:tex END
11\end{document}