Hi everyone, I looked on the forums but I didn't see anyone with a similar problem..
I want to use a couple of .png pictures in a LaTeX file, but whenever I try to use the graphicx package, LaTeX simply won't update my pdf file.
Simple example:
If I create the following simple code:
Code: Select all
\documentclass{article}
\begin{document}
Hello there!
\end{document}
I would get a pdf file you would expect. If I now take the document I already have, and use the graphicx package and wish to further update my document, doesn't even have to be with a picture, I would get:
Code: Select all
\documentclass{article}
\usepackage[pdftex]{graphicx}
\begin{document}
Hello there!\\
How are you?
\end{document}
I would still get the pdf only showing "Hello there!", it simply doesn't get updated anymore. If I remove the command \usepackage[pdftex]{graphicx} or any command that uses \usepackage{graphicx} for that matter, doesn't even have to be [pdftex] it will continue to run as it should and it's nice a tidy, but this problem has been keeping me annoyed for quite a while now, because I simply can't use any pictures in any of my LaTeX documents...
Hope I was clear enough, if I haven't provided enough info, feel free to ask whatever you need to know.
I hope you guys can help me out, because I really like LaTeX and I like using it, this particular thing just pisses me off..