Document Classes ⇒ beamer question
beamer question
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
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
- Stefan Kottwitz
- Site Admin
- Posts: 10397
- Joined: Mon Mar 10, 2008 9:44 pm
beamer question
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}Stefan
beamer question
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:You could find many beamer examples in the web, for instance here: examples of beamer class.Code: Select all
\documentclass{beamer} \title{Simple Beamer Class} \author{gg} \date{\today} \begin{document} \maketitle \end{document}
Stefan