Tagged Questions
2
votes
1answer
349 views
Unbalanced braces with newenvironment / NewEnviron + Command
This is a follow-up question of my Unbalanced braces with newenvironment / NewEnviron post. The gist is that by using
\NewEnviron{myEnv}{%
...
2
votes
1answer
288 views
Unbalanced braces with newenvironment / NewEnviron
I am trying to define an Environment myEnv s.t.
\begin{myEnv}
text1
\end{myEnv} text2}
expands to
\renewcommand{\myCommand}{
text1
} { text2}
The reason for the obviously unbalanced expression ...