如何在 TikZ 图表中插入图片?

如何在 TikZ 图表中插入图片?

我想将图片插入 TikZ 图形,可以吗?

一个例子:

图表

答案1

它与以下搭配效果更佳:\node at (0,0) {\includegraphics[width=2cm]{your picture}};

在此处输入图片描述

答案2

你可以用 来实现pgfplots。下面是一个例子:

\documentclass{article}
\usepackage{pgfplots,siunitx}
\pgfplotsset{width=7cm,compat=1.10}
\begin{document}
  \begin{tikzpicture}
    \begin{axis}[enlargelimits=false,axis on top,xlabel = Displacement
                   (\si{\milli\meter}), ylabel = Load (\si{\kilo\newton})]
       \addplot graphics
       [xmin=0,xmax=8,ymin=0,ymax=90]
       {example-image-a};
    \end{axis}
\end{tikzpicture}
\end{document}

在此处输入图片描述

相关内容