LaTeX Including graphics in LaTeX Help

  • Thread starter Thread starter *melinda*
  • Start date Start date
  • Tags Tags
    Graphics Latex
AI Thread Summary
To include graphics in a LaTeX document, it's essential to use the correct package, specifically \usepackage{graphicx}, instead of the older graphics package. The user encountered errors related to the .ps file format, which may require conversion to .eps for compatibility with LaTeX. There is confusion about the compilation process, particularly the command 'dvips -Ppdf', which is necessary for processing PostScript files. Understanding the bounding box is also crucial for proper image placement, but the user needs clarification on how to implement it. Knowing the version of TeX being used is important, as different versions handle graphics formats differently.
*melinda*
Messages
86
Reaction score
0
hi,

I'm trying to put a graph generated in maple into a latex document, but I have no experience using either program. So far I've been able to save my maple plot in postscript format, and based on various online tutorials I've included the \usepackage{graphics} comand after \documentclass{article}.

In the body of my document I put,

\begin{figure}[h]
\includegraphics{myfile.ps}
\end{figure}

but this is obviously wrong since all I get is a document with no graph and a whole lot of error messages.

Any help would be mucho appreciated!
:smile:
 
Physics news on Phys.org
It would help if you told us what the error messages are. If I remember correctly, "graphics" is an old package and you should use "graphicx". Maybe that will help?
 
You might not have the package installed. Do you know if you have psfig? http://ctan.org/tex-archive/nonfree/graphics/psfig/

(I probably can't help much if you are not using linux.)
 
Last edited by a moderator:
Latex gave me one warning and one error.

Latex warning: file 'myfile.ps' not found on line41
! Latex error: unknown graphics extention: .ps

I did use \usepackage{graphicx} in my document, I just typed it wrong in this thread.

And as far as having a graphics package instaled, I'm not sure. I downloaded latex from http://www.tug.org/protext/ and instaled all the required and suggested software.

How would I find out if I have the right graphics package?
 
There are other graphics packages that you must use to include .ps files...

\usepackage{graphicx}
\usepackage{ifvtex}
\ifvtex
\DeclareGraphicsExtensions{.ps}
\else
\DeclareGraphicsExtensions{.png}
\fi

might work at the beginning of the file...
 
It might be that you have to use "encapsulated postscript" .eps files
http://amath.colorado.edu/documentation/LaTeX/reference/figures.html
http://www.postscript.org/FAQs/language/node82.html
http://www.tm.uka.de/~bless/ps2eps

Maple should be able to export .eps.
 
Last edited:
I included all those commands, but I still got the same warning and error.

What's the difference between .ps and .eps and why would latex require me to use .eps?
 
Ok, I went into my maple worksheet and chose to export my graph as an .eps, but the file says that it is postscript. I'm also very confused by some of the instructions on the links. For example at

http://amath.colorado.edu/documentation/LaTeX/reference/figures.html

In the 'Only PostScript image' section they say, "Then you must compile the document with latex followed by dvips -Ppdf..." I don't understand what I'm being asked to do. What is 'dvips -Ppdf'? Is it a comand, and if it is, how am I supposed to issue it?

I'm also confused about the boundind box. I think I understand what it's used for, but I don't know how to use it.
 
  • #10
What version of TeX are you using? What command do you use to run LaTeX?

Different versions of TeX have different capabilities for handling graphics formats, so if we don't know those facts everybody is guessing.
 

Similar threads

Replies
4
Views
3K
Replies
5
Views
3K
Replies
2
Views
3K
Replies
7
Views
4K
Replies
8
Views
12K
Replies
4
Views
42K
Replies
4
Views
3K
Back
Top