I'm writing text in LaTeX in the verse environment. But there are some parts the should not be in verse inside the verse. The way I've done it so far is to define a new environment that begins with \end{verse} and ends with \begin{verse}. My sense of What Is Blatantly Obvious tells me this is Very Wrong. What's the right way if doing it?
Here is an example:
\newcommand[1]{\description}{\end{verse}{\itshape#1\/}\begin{verse}}
\begin{document}
\begin{verse}
This is
In verse!
\description{But this is not.}
But this is
Again!
\end{verse}
\end{document}
This actually works, but is it done the right way? What I'd really like to do is place a box inside the verse environment that's positioned and justified the "standard" way. But I'm not sure how to do that.
