Search found 3 matches
- Wed Jul 04, 2012 11:53 am
- Forum: Graphics, Figures & Tables
- Topic: graphics | Trouble with scaled Image
- Replies: 4
- Views: 2058
Re: graphics | Trouble with scaled Image
thank you a lot. Using graphicx made it work.
- Wed Jul 04, 2012 10:26 am
- Forum: Graphics, Figures & Tables
- Topic: graphics | Trouble with scaled Image
- Replies: 4
- Views: 2058
graphics | Trouble with scaled Image
\usepackage[pdftex]{graphics}
\begin{document}
\begin{figure}
\begin{center}
\includegraphics[scale=0.40]{fig 1.JPG}
\end{center}
\end{figure}
\end{document}
If I'm writing these commands, the compiler is giving me an error and the PDF is not created. But if I write the following, the program is ...
\begin{document}
\begin{figure}
\begin{center}
\includegraphics[scale=0.40]{fig 1.JPG}
\end{center}
\end{figure}
\end{document}
If I'm writing these commands, the compiler is giving me an error and the PDF is not created. But if I write the following, the program is ...
- Wed Jul 04, 2012 10:02 am
- Forum: Graphics, Figures & Tables
- Topic: graphics | Trouble with scaled Image
- Replies: 4
- Views: 2058
graphics | Trouble with scaled Image
Hello,
I am having an error when writing
I am having an error when writing
\includegraphics[scale=0.40]{fig 1.JPG}
. But if I'm removing the scale and writing the following command \includegraphics{fig 1.JPG}
the PDF is running but the image is no to the scale I want. Please if anyone can help.