Error in creating PDF in Latex in Texstudio -


i want create presentation in latex. following code :

\documentclass{beamer} \usetheme{default}  \title{electrical machines} \subtitle{electromechanical energy conversion} \author{vivek kumar pal} \institute{department of electrical engineering\\vjti} \date{\today}     \subject{electricals}  \begin{document} \end{document} 

code getting executed properly. following error coming creating pdf :

does not valid pdf document. either file corrupt or in process of creation. retrying every 2 seconds. 

kindly in , let know reason.

you missing content. once add it work properly.

\documentclass{beamer} \usetheme{default}  \title{electrical machines} \subtitle{electromechanical energy conversion} \author{vivek kumar pal} \institute{department of electrical engineering\\vjti} \date{\today}     \subject{electricals}  \begin{document} enter content here. \end{document} 

`


Comments

Popular posts from this blog

html - How to set bootstrap input responsive width? -

javascript - Highchart x and y axes data from json -

javascript - Get js console.log as python variable in QWebView pyqt -