I would like to put an equation at the center of a page in beamer (viewing the page from top to bottom rather than left to right - I already know how to center an equation going from left to right). I would also like to have some text above the equation. How can I do both at once?
Tell me more
×
TeX - LaTeX Stack Exchange is a question and answer site for
users of TeX, LaTeX, ConTeXt, and related typesetting systems. It's 100% free, no registration required.
|
Code
Output
Is this what you want? |
|||
|
|

\frametitle, and then the equation is vertically centred on the slide? The simple frame:\begin{frame} \frametitle{Frame title} Here is some text \[ f(x) = ax^2 + bx + c \] \end{frame}produces a centred equation and text immediately above it. – Werner Sep 26 '12 at 19:18