如何为图形编写我自己的 x 和 y 标签?

如何为图形编写我自己的 x 和 y 标签?

我有一个图形,我想在包含该图形后在乳胶中为两个子图写入 x 和 y 标签。我该怎么做?

这是一个例子

\begin{figure}
\includegraphics[width=1\columnwidth]{figures/ablation/plot.pdf}

\caption{}
\label{fig:ablation}
\end{figure}

在此处输入图片描述

答案1

一种可能性是使用 TikZ 节点:

\documentclass{article}
\usepackage{tikz}
\usepackage{graphicx}

\begin{document}
    \begin{figure}[htb]
    \centering
\tikz\node[inner sep=0pt,
           label=west:\rotatebox{90}{$y$ label},
           label=below:$x$ label]
           {\includegraphics{example-image-duck}};

\caption{}
\label{fig:ablation}
    \end{figure}
\end{document}

在此处输入图片描述

相关内容