如何导出使用 TikZ 标记的图表?

如何导出使用 TikZ 标记的图表?

以下是 MWE(以下代码取自这里(略有修改):

\documentclass[tikz]{standalone}
\tikzset{
    use bounding box relative coordinates/.style={
        shift={(current bounding box.south west)},
        x={(current bounding box.south east)},
        y={(current bounding box.north west)}
    },
    label/.style={draw=black},
}
\begin{tikzpicture}
\node[use as bounding box] {\includegraphics{example-image-a}};
\begin{scope}[use bounding box relative coordinates]
    \node[label] (Label) at (0.3,0.3) {GR};
    \draw[stealth-] (Label.west) edge[-stealth] (0.1,0.35)
                      (Label.west) edge[-stealth] (0.1,0.25);
\end{scope}
\end{tikzpicture}
\end{document}

我正在使用这段代码来标记图表。导入到 LaTeX 的图表格式是.jpeg。我打算在 PowerPoint 演示文稿中使用带标签的图表。是否可以使用 TikZ 导出带标签的图表?

答案1

这个答案的动机来自于此来源

对于使用 Overleaf 的用户,我发现这相当简单。首先,您需要编译一次代码,以便文件pdf可用。然后创建一个名称为 的文件latexmkrc并粘贴END { system('convert -density 600 -background white -flatten output.pdf page2.png'); }。然后再重新编译一次项目。现在转到日志和输出文件并向下滚动到页面末尾,您应该能够找到一个名为的文件page2.png。单击该文件。您的图像文件将在新选项卡中打开。

相关内容