Description
This is a refiling of issue #11. We understand the problem much better now than when we filed that issue, so it's good to have a clean re-explanation.
In latex/otsletterhead2.ltx
there are these two commands:
\includesvg[height=0.85em]{noun_Email_3027864_ltgreen.svg}
...
\includesvg[height=1.5em]{noun_Telephone_2591756_ltgreen.svg}
This usage of \includesvg
has two problems:
-
Those commands rely on finding the
.svg
files in the current working directory. But the files don't live in the directory where you're building your PDF; they live here in theots-doctools
project (in thelatex/
subdirectory, currently, although probably we should move them to a top-levelimages/
directory at some point). -
The
includesvg
command relies on the LaTeXwrite18
command to invokeinkscape
as a subprocess (and possibly some other things, such as ImageMagickconvert
and evenpdflatex
itself -- the full conversion process is quite complex). However,write18
only works if at the top level we pass-shell-escape
tolatexmk
, and passing-shell-escape
is a security hole: if someone were to build a maliciously-crafted LaTeX document, then the document could cause arbitrary commands to be run.
So, those are the problems. Now let's stroll -- just part-way -- down solution lane:
You'd think it would be easy to solve (1) by adjusting the graphics search path via \graphicspath{some_path}
, but the parameter to that command is either absolute, relative to the current working directory, or relative to the top TeX file (with "./" prefix; see docs). None of these do quite what we want, which would be "relative to ${OTS_DOCTOOLS_DIR}" So, jury is still out on how to properly solve (1).
Meanhile, (2) is also tricky. The obvious answer would be to move the image-conversion pipeline out of the includesvg
LaTeX package and to somewhere safe, like our Makefile. But determining exactly what external commands includesvg
runs, so we can duplicate them, is not trivial. I've looked at the source code of the svg
package, and it's a maze of write18
calls. If we implement all the workarounds (copy the source .svg
files to cwd and add the --shell-escape
options to the ots-doctools
Makefile), we see that a successful run produces two outputs based on noun_Email_3027864_ltgreen_svg
: noun_Email_3027864_ltgreen_svg-tex.pdf
and noun_Email_3027864_ltgreen_svg-tex.pdf_tex
. However, just running Inkscape manually (e.g., inkscape -D -z -f noun_Email_3027864_ltgreen.svg --export-pdf=noun_Email_3027864_ltgreen.pdf --export-latex
) doesn't produce those files; instead, it produces noun_Email_3027864_ltgreen.pdf
and noun_Email_3027864_ltgreen.pdf_tex
. Clearly the svg
package is doing some Stuff, and if we want to duplicate that Stuff we'll need to learn exactly what it is.
For now, I've "solved" (1) via a Makefile kluge that copies the .svg
source files to cwd before latexmk
is run, and "solved" (2) by adding the -shell-escape
option back. See commit 8d25e42.