-
Notifications
You must be signed in to change notification settings - Fork 399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SVG files for in Chapter2/figs/vector/* is not recognised #167
Comments
Have you looked at this: https://tex.stackexchange.com/questions/2099/how-to-include-svg-diagrams-in-latex? |
Thanks for the reference but I am not using LaTex compiler to create SVG files.
for the purpose of the conversion from svg to PDF. However, make output is the following:
and some output in "thesis.d" said the following
From Makefile, I found that Holger Nahrstaedt is the last maintainer of Makefile and For the time being, what it is working for me when using SVG files is following command typed in the terminal:
I appreciate any help that you can provide! |
A bit old, but for anyone who comes across this in the future: I understand that inkscape sometimes rasterises stuff you don't want it to, and as such I personally use #!/bin/bash
set -e
ROOT_PATH=$1
for SVG_PATH in $(find ${ROOT_PATH} -iname "*.svg" | grep -vP "CollegeShields/")
do
PDF_PATH="${SVG_PATH%.svg}.pdf"
if [ ! -f "${PDF_PATH}" ] || [ "${SVG_PATH}" -nt "${PDF_PATH}" ]; then
echo "converting ${SVG_PATH} to PDF"
rsvg-convert -f pdf -o ${PDF_PATH} ${SVG_PATH}
else
echo "don't need to convert ${SVG_PATH}"
fi
done It looks for any file ending with Then in my makefile: .PHONY: svg-convert
svg-convert:
./scripts/svg-convert.sh . then I add |
For some reason when using fig.svg file in Chapter2.tex
with images in the right path
I got this error after using make:
I checked the Makefile (version := 2.2.1-alpha10) and it seems fine and tried with eps files and the making works well.
Any suggestions?
The text was updated successfully, but these errors were encountered: