General ⇒ Convert GIF to EPS and include with LaTeX
-
- Posts: 2
- Joined: Thu Aug 23, 2007 5:23 am
Convert GIF to EPS and include with LaTeX
Thank u in advance
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Re: Urgent! Help me please!
Can you convert the dvi file into ps or pdf and the problem remains?
Do you have the correct bounding box in the eps file?
-
- Posts: 2
- Joined: Thu Aug 23, 2007 5:23 am
Re: Urgent! Help me please!
It's a bit silly but could u please tell me how to convert .ps or dvi?
I have fixed the bounding box but it does not seem right.
Thankx
Convert GIF to EPS and include with LaTeX
1.) compiling to dvi
using latex and pictures in the eps format
in this case, you can use dvips to convert the dvi file into a ps file
dvips can be found in the binary directory of your latex distribution, in general
2.) compiling to pdf
using pdflatex and pictures in the jpg or pdf format
this case is very famous today
so maybe you try to convert your pictures into jpg
to compile the latex file use pdflatex instead of latex; a usually used latex editor, like texniccenter, texmaker or kile should have a button for this
here also some example code for including pictures into a latex document
in the preamble:
\usepackage{graphicx}
Code: Select all
\begin{figure}[htbp]
\centering
\includegraphics{yourpicture.jpg or .eps}
\caption{}
\label{}
\end{figure}