I would like to display \begin{verbatim}...\end{verbatim} inside the environment verbatim like in the folowing piece of code. Is it possible ?
\begin{verbatim}
Bla, bla,
\begin{verbatim}...\end{verbatim}
Bla, bla,...
\end{verbatim}
You could use the verbatim package then define your own variant
\newenvironment{myverbatim}%
{\verbatim}%
{\endverbatim}
then you can use myverbatim if you want to have literal \end{verbatim}
\begin{myverbatim}
Bla, bla,
\begin{verbatim}...\end{verbatim}
Bla, bla,...
\end{myverbatim}
verbatim, could you use thelistingspackage instead? – ArTourter Apr 06 '12 at 22:37