我有一张图片,但实际上它是两个图形的组合。因此我只能使用\includegraphics
一次。不过,我想为左侧和右侧使用两个标签。我搜索了答案,但找不到。我正在发送预期结果的图片。你能帮帮我吗?
答案1
您可以为一个空的 加一个子标题minipage
,类似于第 2 节中显示的内容文档subcaption
。
\documentclass{article}
\usepackage{graphicx}
\usepackage{subcaption}
\begin{document}
\begin{figure}
\centering
\includegraphics[width=0.5\textwidth]{example-image-a}
\begin{minipage}{0.25\textwidth}
\subcaption{\label{left} Left half}
\end{minipage}
\begin{minipage}{0.25\textwidth}
\subcaption{\label{right} Right half}
\end{minipage}
\caption{\label{figure} Overall caption}
\end{figure}
Figure~\ref{figure} has \ref{left} on the left, and \ref{right} on the right,
also known as \subref{left} and \subref{right}.
\end{document}