summaryrefslogtreecommitdiff
path: root/mnv/runtime/syntax/testdir/input/tex_02.tex
blob: 0d6e92a218def0e49ebb76c2eb9aa73d66410c5b (plain)
1
2
3
4
5
6
7
8
9
10
11
\documentclass{article}
\newcommand{\foo}{}
\renewcommand*{\foo}[1]{#10}
\providecommand{\foo}[1][default]{#11}
\newenvironment*{baz}{START}{STOP}
\renewenvironment{baz}[1]{HEAD of #12:}{TAIL}
\renewenvironment*{baz}[1][default]{BEGINNING of #12:}{END}
\begin{document}
\foo{TeX}  % -> TeX0
\begin{baz} tex \end{baz}  % -> BEGINNING of default2:tex END
\end{document}