diff options
Diffstat (limited to 'Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-graphicspath.html')
-rw-r--r-- | Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-graphicspath.html | 70 |
1 files changed, 0 insertions, 70 deletions
diff --git a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-graphicspath.html b/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-graphicspath.html deleted file mode 100644 index ed6f705ccf3..00000000000 --- a/Master/texmf-dist/doc/generic/FAQ-en/html/FAQ-graphicspath.html +++ /dev/null @@ -1,70 +0,0 @@ -<head> -<title>UK TeX FAQ -- question label graphicspath</title> -</head><body> -<h3>Importing graphics from “somewhere else”</h3> -<p/>By default, graphics commands like <code>\</code><code>includegraphics</code> look -“wherever TeX files are found” for the graphic file they’re being -asked to use. This can reduce your flexibility if you choose to hold -your graphics files in a common directory, away from your (La)TeX -sources. -<p/>The simplest solution is to patch TeX’s path, by changing the -default path. On most systems, the default path is taken from the -environment variable <code>TEXINPUTS</code>, if it’s present; you can adapt that -to take in the path it already has, by setting the variable to -<blockquote> -<pre> -TEXINPUTS=.:<graphics path(s)>: -</pre> -</blockquote><p> -on a Unix system; on a Windows system the separator will be “<code>;</code>” -rather than “<code>:</code>”. The “<code>.</code>” is there to ensure -that the current directory is searched first; the trailing -“<code>:</code>” says “patch in the value of <code>TEXINPUTS</code> from -your configuration file, here”. -<p/>This method has the merit of efficiency ((La)TeX does <em>all</em> of -the searches, which is quick), but it’s always clumsy and may prove -inconvenient to use in Windows setups (at least). -<p/>The alternative is to use the <i>graphics</i> package command -<code>\</code><code>graphicspath</code>; this command is of course also available to users -of the <i>graphicx</i> and the <i>epsfig</i> packages. The -syntax of <code>\</code><code>graphicspath</code>’s one argument is slightly odd: it’s a -sequence of paths (typically relative paths), each of which is -enclosed in braces. A slightly odd example (slightly modified from one -given in the <i>graphics</i> bundle documentation) is: -<blockquote> -<pre> -\graphicspath{{eps/}{png/}} -</pre> -</blockquote><p> -which will search for graphics files in subdirectories <i>eps</i> and -<i>png</i> of the directory in which LaTeX is running. (Note that -the trailing “<code>/</code>” <em>is</em> required.) -<p/>(Note that some (La)TeX systems will only allow you to use files in -the current directory and its sub-directories, for security reasons. -However, <code>\</code><code>graphicspath</code> imposes no such restriction: as far as -<em>it</em> is concerned, you can access files anywhere.) -<p/>Be aware that <code>\</code><code>graphicspath</code> does not affect the operations of -graphics macros other than those from the graphics bundle — in -particular, those of the outdated <i>epsf</i> and -<i>psfig</i> packages are immune. -<p/>The slight disadvantage of the <code>\</code><code>graphicspath</code> method is -inefficiency. The package will call (La)TeX once for each entry in -the list to look for a file, which of course slows things. Further, -(La)TeX remembers the name of any file it’s asked to look up, thus -effectively losing memory, so that in the limit a document that uses a -huge number of graphical inputs could be embarrassed by lack of -memory. (Such “memory starvation” is pretty unlikely with any -ordinary document in a reasonably modern (La)TeX system, but it -should be borne in mind.) -<p/>If your document is split into a variety of directories, and each -directory has its associated graphics, the <i>import</i> package -may well be the thing for you; see the discussion -in the question “ -<a href="FAQ-docotherdir.html">bits of document in other directories</a> -”. -<dl> -<dt><tt><i>graphics bundle</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/required/graphics.zip">macros/latex/required/graphics</a> (or <a href="http://mirror.ctan.org/macros/latex/required/graphics/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/graphics.html">catalogue entry</a> -<dt><tt><i>import.sty</i></tt><dd><a href="http://mirror.ctan.org/macros/latex/contrib/import.zip">macros/latex/contrib/import</a> (or <a href="http://mirror.ctan.org/macros/latex/contrib/import/">browse the directory</a>); <a href="http://mirror.ctan.org/help/Catalogue/entries/import.html">catalogue entry</a> -</dl> -<p/><p>This question on the Web: <a href="http://www.tex.ac.uk/cgi-bin/texfaq2html?label=graphicspath">http://www.tex.ac.uk/cgi-bin/texfaq2html?label=graphicspath</a> -</body> |