我在清晰的圖表中創建了一個 svg 檔案並將其匯出到背頁。我使用以下程式碼來載入 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 包。我在這裡做錯了什麼?