You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
so, I'm having some trouble trying to include files with a bit of a funky extension. Specifically, I'm trying to include svg files ending in drawio.svg.
I'm trying to do that like this:
\begin{figure}[H]
\centering
\includesvg[width=0.8\linewidth]{"Figures/Chapter 3/Software structure.drawio"}
\caption[Overall software structure of the solution]{Software structure}
\label{fig:3_Software_structure}
\end{figure}
This gives me this error: Package pdftex.def: File `{./svg-inkscape/Software structure.drawio_svg-tex}.pdf' not found: using draft setting.
The files shown below are created, however:
I have tried doing this in a lot of different ways, like using " or {} in different places or removing and adding extensions in different places, but nothing works. I have also tried specifying svgextension like this:
\begin{figure}[H]
\centering
\includesvg[width=0.8\linewidth, svgextension=drawio.svg]{"Figures/Chapter 3/Software structure"}
\caption[Overall software structure of the solution]{Software structure}
\label{fig:3_Software_structure}
\end{figure}
But this gives me these errors: Package svg: File `Software structure.drawio.svg_drawio.svg-tex.pdf' is missing.
Package svg: File `Software structure.drawio.svg_drawio.svg-tex.pdf_tex' is missing.
I'm not sure why this causes it to seemingly look for a double (quadruple?) extension.
Is there any good way to solve this, except for renaming the files in question?
The text was updated successfully, but these errors were encountered:
Hi,
so, I'm having some trouble trying to include files with a bit of a funky extension. Specifically, I'm trying to include svg files ending in
drawio.svg
.I'm trying to do that like this:
This gives me this error:
Package pdftex.def: File `{./svg-inkscape/Software structure.drawio_svg-tex}.pdf' not found: using draft setting.
The files shown below are created, however:
I have tried doing this in a lot of different ways, like using
"
or{}
in different places or removing and adding extensions in different places, but nothing works. I have also tried specifyingsvgextension
like this:But this gives me these errors:
Package svg: File `Software structure.drawio.svg_drawio.svg-tex.pdf' is missing.
Package svg: File `Software structure.drawio.svg_drawio.svg-tex.pdf_tex' is missing.
I'm not sure why this causes it to seemingly look for a double (quadruple?) extension.
Is there any good way to solve this, except for renaming the files in question?
The text was updated successfully, but these errors were encountered: