Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I top-align the content of a "fragile" frame in a LaTeX Beamer presentation?

Tags:

latex

beamer

So I am a total novice with LaTeX. I'm working on beamer presentations for introductory programming lectures, so I frequently use the examplebox object in my slides. I was told that whenever I have a frame that contains an examplebox, I need to declare it with the keyword 'fragile,' as in:

\begin{frame}[fragile]

I don't know precisely what this does, but I know my code will only compile if I use it. I have also gathered from the internet that if I want to top-align content on a frame, I add the 't' keyword, as in:

\begin{frame}[t]

Combining the two of these in what I, knowing very little about LaTeX, would consider to be the intuitive way, does not work.

\begin{frame}[t][fragile]

Nor does

\begin{frame}[fragile][t]

I'm guessing there is an easy solution to using both of these at the same time, but I'm having trouble finding a straight answer on the web. Can anyone shed some light?

Thanks!

like image 494
pr0crastin8r Avatar asked Dec 12 '22 19:12

pr0crastin8r


2 Answers

Even if its too late to be of relevance to the original asker:

Optional arguments are usually stacked up using a comma as delimiter, i.e. the correct form should be

\begin{frame}[fragile,t]
like image 200
Yu_ Avatar answered May 17 '23 08:05

Yu_


did you try it with a semicolon?

this works fine: \begin{frame}[fragile,t]

like image 30
Philip H. Avatar answered May 17 '23 10:05

Philip H.