如何在并排的 tikz 图片中的等效位置对齐单个字符节点?

如何在并排的 tikz 图片中的等效位置对齐单个字符节点?

我想与和tikz结合使用,以实现可以在文本中引用的自动标记子图。这是我的 MWE:graphicxsubcaption

\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}

结果如下: 标签未对齐的 MWE 输出

如果仔细观察,您会发现标签ab垂直方向未对齐。字符的顶端对齐,导致在b视觉上太低。如何像在常规文本中一样对齐标签a b,而不会破坏两个子标题(每个标题有一张图片)的结构?

相关内容