I am a very beginner in LaTeX.
I work with MiKTeX and TeXniKcenter. I can compile and create a pdf document when documentclass is "article". But when the documentclass is beamer, I have some problems with :
Latex => dvi : I can view the document but a window opens with "MiXTeK Problem Report : Some PostScript specials could not be rendered."
Latex => dvi => pdf : The pdf has the good number of slides, but they are blank, or sometimes there is in a corner a few of the text that should be written... And that is very annoying...
NB : I have installed the needed packages (beamer, pgf, xcolor and others...)
Here is one of the beamer code -which creates a blank pdf.
Code: Select all
\documentclass{beamer}
\usepackage[frenchb]{babel}
\usepackage[T1]{fontenc}
\usepackage[latin1]{inputenc}
\usetheme{Warsaw}
\begin{document}
\begin{frame}
Voici votre première page de présentation en LaTeX !
\end{frame}
\end{document}