I'm trying to include SVG images with dots/periods in the file name.
\documentclass{article}
\usepackage{svg}
\begin{document}
\includesvg[width=\textwidth]{xgb.clf.output/Images/no.missing.data.Deceased.excluded.max_multiples.10zzDeceasedzz0.5zz0zz0.65zz3_ROC.svg}
\end{document}
I'm compiling thus:
pdflatex -halt-on-error -shell-escape --draftmode tmp.tex
this gives a file not found error, which is obviously not working correctly (after conversion with Inkscape):
! Package pdftex.def Error: File `{./svg-inkscape/no.missing.data.Deceased.excl
uded.max_multiples.10zzDeceasedzz0.5zz0zz0.65zz3_ROC_svg-tex}.pdf' not found: u
sing draft setting.
I've tried
\includesvg[width=\textwidth]{{xgb.clf.output/Images/no.missing.data.Deceased.excluded.max_multiples.10zzDeceasedzz0.5zz0zz0.65zz3_ROC}.svg}
as suggested by
\includegraphics: Dots in filename & https://stackoverflow.com/questions/4344066/allowing-includegraphics-in-latex-to-include-files-with-arbitrary-filenames to no avail, because \includesvg seems to work differently than \includegraphics
I've also tried removing the svg extension, but the error persists.
Using grffile also fails:
\documentclass{article}
\usepackage{svg}
\usepackage{grffile}
\begin{document}
\includesvg[width=\textwidth]{xgb.clf.output/Images/no.missing.data.Deceased.excluded.max_multiples.10zzDeceasedzz0.5zz0zz0.65zz3_ROC.svg}
\end{document}
How can I include SVG with dots in the filename?
\usepackage{grffile}– Henri Menke Apr 02 '21 at 18:29grffilepackage, and 1) typing in real file name, 2) typing in with{}around file/directory, still produces the same error :( – con Apr 02 '21 at 18:34