[Tex/LaTex] Beamer: error ! ==> Fatal error occurred, no output PDF file produced!

beamererrors

Having problems with LaTeX. The PDF file isn't being created and I have looked numerous times online. I think the problems lies in the user packages.

Here is the end the log code:

Package pdftex.def Warning: Option `bb' does not make sense,
(pdftex.def)                using `viewport' instead on input line 154.

<use riskcenter2.jpg> [12])
Runaway argument?
\let \AtEndDocument \@firstofone \@enddocumenthook \@checkend {docume\ETC.
! File ended while scanning use of \beamer@collect@@body.
<inserted text> 
                \par 
<*> Copulas.tex

! Emergency stop.
<*> Copulas.tex

!  ==> Fatal error occurred, no output PDF file produced!
Transcript written on Copulas.log.

and here is the beginning of the document the user packages;

\documentclass[notes=show, Spanish]{beamer}
\usepackage{graphicx}
\DeclareGraphicsRule{.emf}{bmp}{}{}
\DeclareGraphicsExtensions{.pdf,.png,.jpg, .gif} 

\usepackage[Spanish]{babel}
\usepackage{amssymb}
\usepackage{eurosym}
%%%%%%%%%%%%%%%%%%%%%%%%
\usepackage{mathpazo}
\usepackage{hyperref}
\usepackage{multimedia}
\usepackage[latin1]{inputenc}
\usepackage{color}
\definecolor{Red}{rgb}{0.9,0.05,0.05}
%\usepackage{subfig} 

If you need me to send the files I can do so.

Best Answer

in your document you have a \includegraphics[bb=...]{...} which makes no sense. You should use

\includegraphics[viewport=...,clip]{...}

if really needed!