图中数字编号

图中数字编号

我正在使用这个subfig包,它运行得很好。但是,我只使用子图编号(所以没有子标题,所有信息都将在主标题中),但这些都放在图像下方,看起来很奇怪。我更喜欢将 a.、b.、c. 等内容放在我的图中(或者放在顶部,如果你愿意的话),例如放在左上角,就像图例一样。我不确定这是否相关,但我使用的是 TikZ 图形。可能标题也可以在 .tikz 代码中定义,这样我就可以用来axis cs:放置数字(a.、b. 等)。

这可行吗?我在网上或手册上找不到任何相关信息。

答案1

在此处输入图片描述

\documentclass[]{article}
\usepackage{subfig}
\begin{document}
\captionsetup[subfloat]{position=top}
\begin{figure}
\centering
\subfloat[]{\fbox{image}}\quad
\subfloat[]{\fbox{image}}
\caption{two images}
\end{figure}


\begin{figure}
\centering
\subfloat{\fbox{\thesubfigure: image}}\quad
\subfloat{\fbox{\thesubfigure: image}}
\caption{two images}
\end{figure}
\end{document}

相关内容