我想与和tikz
结合使用,以实现可以在文本中引用的自动标记子图。这是我的 MWE:graphicx
subcaption
\documentclass{article}
\usepackage{graphicx}
\usepackage{subcaption}
\usepackage{tikz}
\usetikzlibrary{positioning}
\begin{document}
\begin{figure}
\centering
\begin{subfigure}[t]{0.49\linewidth}
\phantomcaption{}\label{thisfig}
\begin{tikzpicture}
\node[rectangle, inner sep=0] (image) {\includegraphics[width=\linewidth]{example-image-a}};
\node[below right = 0cm and 0cm] (label) at (image.north west) {\textbf{\subref{thisfig}}};
\end{tikzpicture}
\end{subfigure}
\begin{subfigure}[t]{0.49\linewidth}
\phantomcaption{}\label{thatfig}
\begin{tikzpicture}
\node[rectangle, inner sep=0] (image) {\includegraphics[width=\linewidth]{example-image-b}};
\node[below right = 0cm and 0cm] (label) at (image.north west) {\textbf{\subref{thatfig}}};
\end{tikzpicture}
\end{subfigure}
\end{figure}
\end{document}
如果仔细观察,您会发现标签a
和b
垂直方向未对齐。字符的顶端对齐,导致在b
视觉上太低。如何像在常规文本中一样对齐标签a b
,而不会破坏两个子标题(每个标题有一张图片)的结构?