LyXProblem with beamer

Information and discussion about LyX, a WYSIWYM editor, available for Linux, Windows and Mac OS X systems.
Post Reply
tuvok78
Posts: 1
Joined: Sun Mar 07, 2010 11:56 pm

Problem with beamer

Post by tuvok78 »

Hi, I'm a newb.
I have problem to set theme/layout for a beamer presentation
I create a new doc and so in document - settings, i choose "document class - presentation (beamer)".
Now I have to set the layout, I have some layout, .sty files, but I can't select these files..
Can someone help me?
Thanks.

Recommended reading 2024:

LaTeXguide.org • LaTeX-Cookbook.net • TikZ.org

NEW: TikZ book now 40% off at Amazon.com for a short time.

coachbennett1981
Posts: 274
Joined: Fri Feb 05, 2010 10:15 pm

Problem with beamer

Post by coachbennett1981 »

Here is the preamble I use for all my presentations. I hope this helps.. You can also find the beamer user guide online, it is very nice..

Code: Select all

\documentclass{beamer}
\mode<presentation>
\usetheme{Warsaw}
\usepackage{amsmath}
\usepackage{amsfonts}
\usepackage{multicol}
\usepackage{color}
\usepackage{graphics}
\usepackage{pstricks}
\usepackage{pst-coil}
\usepackage{pst-node}
\usepackage{subfigure}
\usepackage{xkeyval}
\usepackage{pst-plot}
\usepackage{pstricks-add}
\usepackage{pst-func}
\usepackage{pst-tree}
\newcommand{\VecN}{\overset{\rightharpoonup}}
\usepackage{epstopdf}
\DeclareGraphicsRule{.tif}{png}{.png}{`convert #1 `dirname #1`/`basename #1 .tif`.png}


\title{Binomial Radical Expressions}
\author[Mr. Bennett]{School Without Walls\\ \texttt{nicholas.bennett@dc.gov}}

\begin{document}
\begin{frame}
	\titlepage
\end{frame}
Post Reply