File: FAQ-unkgrfextn.html

package info (click to toggle)
tetex-base 3.0.dfsg.3-5
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 239,540 kB
  • ctags: 10,610
  • sloc: xml: 103,461; perl: 9,398; ruby: 2,850; python: 1,551; php: 1,067; sh: 981; lisp: 494; makefile: 371; awk: 88
file content (40 lines) | stat: -rw-r--r-- 1,959 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<head>
<title>UK TeX FAQ -- question label unkgrfextn</title>
</head><body>
<h3>"Unknown graphics extension"</h3>
<p>The LaTeX graphics package deals with several different types of
DVI (or other) output drivers; each one of them has a potential
to deal with a different selection of graphics formats.  The package
therefore has to be told what graphics file types its output driver
knows about; this is usually done in the &lt;<i>driver</i>&gt;<code>.def</code> file
corresponding to the output driver you're using.
<p>The error message arises, then, if you have a graphics file whose
extension doesn't correspond with one your driver knows about.  Most
often, this is because you're being optimistic: asking
<i>dvips</i> to deal with a <code>.png</code> file, or PDFTeX to deal with
a <code>.eps</code> file: the solution in this case is to transform the graphics
file to a format your driver knows about.
<p>If you happen to <em>know</em> that your device driver deals with the
format of your file, you are probably falling foul of a limitation of
the file name parsing code that the graphics package uses.  Suppose
you want to include a graphics file <i>home.bedroom.eps</i> using the
<i>dvips</i> driver; the package will conclude that your file's
extension is <i>.bedroom.eps</i>, and will complain.  To get around
this limitation, you have three alternatives:
<ul>
<li> Rename the file - for example <i>home.bedroom.eps</i>-&gt; 
  <i>home-bedroom.eps</i>
<li> Mask the first dot in the file name:
<pre>
\newcommand*{\DOT}{.}
\includegraphics{home\DOT bedroom.eps}
</pre>
<li> Tell the graphics package what the file is, by means of options
  to the <code>\</code><code>includegraphics</code> command:

<pre>
\includegraphics[type=eps,ext=.eps,read=.eps]{home.bedroom}
</pre>
</ul>
<p><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=unkgrfextn">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=unkgrfextn</a>
</body>