我怎样才能将索引 (a) 和 (b) 放在图形左侧的不同高度?
\begin{figure}[]
\begin{center}
\includegraphics[width=1.0cm]{A}
\end{center}
\caption{...}
\label{fig:1}
\end{figure}
答案1
看起来很奇怪。为什么对同一物体使用两个不同的标签?
您可以将图像装箱,然后将其高度用于\parbox
标签:
\documentclass{article}
\usepackage{graphicx}
\newsavebox\Figbox
\savebox\Figbox{\includegraphics[width=1cm,height=3cm]{example-image-a}}
\begin{document}
\begin{figure}
\centering
\parbox[b][\ht\Figbox][t]{20pt}{(a)\vfill (b)}%
\parbox[b]{\wd\Figbox}{\usebox\Figbox}
\caption{...}
\label{fig:1}
\end{figure}
\end{document}