Document Classesbeamer question

Information and discussion about specific document classes and how to create your own document classes.
Post Reply
gcheer3
Posts: 41
Joined: Wed Jun 25, 2008 4:39 pm

beamer question

Post by gcheer3 »

I am new to Tex

First, I downloaded TeXnicCenter, then I downloaded MikTex both on today, the newest edition.

I open the TexnicCenter, and input a very simple code:

\documentclass{beamer}
\begin{document}
\title{Simple Beamer Class}
\author{gg}
\date{\today}

I chose Latex--> PDF, then I went to build---> view output, the PDF opened as a blank file, then there is a message said, there is an error.

Please give me some help. I feel so frustrated. I have been trying for two days. I tried other tex file, didnt work also

Recommended reading 2024:

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

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

User avatar
Stefan Kottwitz
Site Admin
Posts: 10321
Joined: Mon Mar 10, 2008 9:44 pm

beamer question

Post by Stefan Kottwitz »

Hi gcheer3,

welcome to this board!

Your code example is not complete. Try this:

Code: Select all

\documentclass{beamer}
\title{Simple Beamer Class}
\author{gg}
\date{\today}
\begin{document}
\maketitle
\end{document}
You could find many beamer examples in the web, for instance here: examples of beamer class.

Stefan
LaTeX.org admin
gcheer3
Posts: 41
Joined: Wed Jun 25, 2008 4:39 pm

beamer question

Post by gcheer3 »

Dear Dear Stenfan:

Thank you so much for your prompt reply. I feel happy now. It worked.

Gcheer

Stefan_K wrote:Hi gcheer3,

welcome to this board!

Your code example is not complete. Try this:

Code: Select all

\documentclass{beamer}
\title{Simple Beamer Class}
\author{gg}
\date{\today}
\begin{document}
\maketitle
\end{document}
You could find many beamer examples in the web, for instance here: examples of beamer class.

Stefan
Post Reply