vote up 0 vote down star

Hi folks,

What's the best way to include some code snippets in a beamer presentation?

I've already tried verbatim, and lstlisting environments - both destroyed my presentation.

flag

2 Answers

vote up 3 vote down

Use the [fragile] option:

\begin{frame}[fragile]
\begin{verbatim}
...
\end{verbatim}
\end{frame}
link|flag
I've already tried this, with a strange result. The slide with code looks OK, but all slides before have paper size changed to A4. – m01 Nov 8 at 21:42
That is very strange indeed, as the "paper size" should be 128mm times 96mm to reflect the 4:3 ratio of most beamers output. You didn't fiddle around with that setting, did you? – mkluwe Nov 9 at 16:55
vote up 1 vote down

I recently used something like

\verbatiminput{blah.c}

in a beamer presentation, and it worked alright for me...

Wanna post your code?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.