I have found an example of presentation made with beamer on the web that redefines the environment for the frame. The code is
Code: Select all
\newenvironment{lslide}[1]
{\begin{frame}
{\begin{center}#1
\end{center}}}
{\end{frame}}
Thank you
Code: Select all
\newenvironment{lslide}[1]
{\begin{frame}
{\begin{center}#1
\end{center}}}
{\end{frame}}
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Code: Select all
\begin{lslide}{Argument}
Something here
\end{lslide}
Code: Select all
\begin{frame}
\begin{center}Argument
\end{center}
Something here
\end{frame}
Code: Select all
\setbeamersize{text margin left=0.15cm,text margin right=0.15cm}Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis