Lucid Chart で SVG ファイルを作成し、Overleaf にエクスポートしました。次のコードを使用して SVG 画像を読み込みました。
\documentclass{article}
\usepackage{svg}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\centering
\includesvg[width=\textwidth]{"getdents interception.svg"}
\caption{\textbf{\textit{getdents}} interception}
\end{figure}
\end{document}
コンパイル後の出力は次のようになります。
ご覧のとおり、画像の拡大縮小が正しく行われていません。graphicx パッケージと svg パッケージの両方を含めました。何が間違っているのでしょうか?