I am using Overleaf with LuaLaTex as my compiler. I have an svg which renders properly in a browser and looks like this:
However, when using the command \includesvg[width=\colwidth]{image.svg}, the svg does not render properly and produces the following:
Is this something to do with the compiler perhaps? With overleaf? I would prefer not to convert the svg to a png or pdf in order to maintain the best possible resolution.


<path d="..." fill="#FFFFFF" fill-rule="evenodd"/><text font-family="Wingdings,Wingdings_MSFontService,sans-serif" font-weight="400" font-size="138" transform="matrix(1 0 0 1 1334.64 814)"></text>uses characterU+F08D. Problem solved if it's possible to convert it to vector graphics in PDF. For this specific simple svg, maybe redraw it with Inkscape or eventikz? – muzimuzhi Z Mar 19 '24 at 06:30\includesvg[width=\colwidth,inkscapelatex=false]{image.svg}– mrpiggi Mar 19 '24 at 07:24\includegraphicsfrom packagegraphicx. // If that fails, either revert to MS PPT if possible, or redo it in Tikz (it's not too difficult). // IF you can edit the svg beforehand to remove all those circled digits: remove them, save/print/export as pdf, have a look at packagetikz-imagelabels(example: https://tex.stackexchange.com/a/579177/245790) – MS-SPO Mar 19 '24 at 14:47