是否可以将 SVG 代码包含到 LaTex 中?如果可以,我该怎么做?简短示例:
<svg xmlns="http://www.w3.org/2000/svg" version="1.1">
<path d="M150 0 L75 200 L225 200 Z" />
</svg>
我没有扩展名为 .svg 的文件,我只能访问其代码。对于结果,我想显示 svg“图像”。
答案1
您可以在 tikzpicture 中使用 svg 数据:
\documentclass[tikz, border=4pt]{standalone}
\usepackage{amsmath,mathpazo}
\usetikzlibrary{svg.path}
\begin{document}
\begin{tikzpicture}
\draw svg "M150 0 L75 200 L225 200 Z";
\end{tikzpicture}
\end{document}