Start new topic
Reply to thisS.B.Phadke writes: The following code does not work: I can confirm this behavior with recent Debian packages. A possible workaround is to use Beamer's semiverbatim environment: \begin{semiverbatim}
Reply to thisIs there a font which distinguishes between 1, l, I, 0, O (number one, small ell, capital I, number zero, letter O)? |
|
Reply to this
The following code does not work:
\begin{frame}[fragile]
\frametitle{}
\begin{verbatim}
\begin{frame}
abc
\end{frame}
\end{verbatim}
\end{frame}
Surprisingly if I introduce a space between \ and end{frame} inside the verbatim environment then the code works i.e the following code works:
\begin{frame}[fragile]
\frametitle{}
\begin{verbatim}
\begin{frame}
abc
\ end{frame}
\end{verbatim}
\end{frame}