我一直在尝试寻找在 PDF 上添加轴刻度和轴标签的方法。到目前为止,我只找到了一种添加轴标签的方法。有人能帮我吗?
我正在尝试从这里开始:
到轴刻度,看起来像这样:
我现在正在使用的代码:
\begin{figure}[htb]
\begin{minipage}{0.4\textwidth}
\begin{tikzpicture}
\node (img) {\includegraphics[scale=0.225]{example-image}};
\node[below=of img, node distance=0cm, yshift=1cm,font=\color{red}] {x-axis};
\node[left=of img, node distance=0cm, rotate=90, anchor=center,yshift=-0.7cm,font=\color{red}] {y-axis};
\end{tikzpicture}
\end{minipage}%
\begin{minipage}{0.4\textwidth}
\begin{tikzpicture}
\node (img) {\includegraphics[scale=0.225]{aa12.pdf}};
\node[below=of img, node distance=0cm, yshift=1cm,font=\color{black}] {x-axis};
\node[left=of img, node distance=0cm, rotate=90, anchor=center,yshift=-0.7cm,font=\color{red}] {y-axis};
\end{tikzpicture}
\end{minipage}%
\end{figure}