floatrow
我使用包而不是包创建了子图subcaption
。后者未加载。
\begin{figure}[htbp]
\ffigbox[\FBwidth]
{\begin{subfloatrow}[2]
\ffigbox[\FBwidth]
{\caption{Cap1}\label{lab1}}
{Test1}
\ffigbox[\FBwidth]
{\caption{Cap2}\label{lab2}}
{Test2}
\end{subfloatrow}}
{\caption{Cap}
\label{lab}}
\end{figure}
显示效果正如我所愿。主标题带有标签“图 1:”,子标题带有“(a)”和“(b)”。
但是,我怀念\subref
该包的宏subcaption
,它可以直接链接到子图。floatrow
我只能\ref{lab1}
得到“1a”。前者\subref{lab1}
只给出“a”或更好的“(a)”(以匹配labelformat=parens
)。
我可以用 onlyfloatrow
和caption
loaded 做类似的事情吗?如果不行,我该如何重新定义\ref
宏来匹配labelformat
,从而显示“1(a)”而不是“1a”?
答案1
你可以这样做caption
:
\documentclass{article}
\usepackage{floatrow}
\usepackage{caption}
\usepackage{graphicx}
\DeclareCaptionSubType[alph]{figure}
\renewcommand\thesubfigure{(\alph{subfigure})}
\captionsetup[subfloat]{labelformat=simple,listformat=simple}
\begin{document}
\listoffigures
\begin{figure}[htbp]
\ffigbox[\FBwidth]
{\begin{subfloatrow}[2]
\ffigbox[\FBwidth]
{\caption{Caption for subfigure 1}\label{lab1}}
{\rule{5cm}{1cm}}
\ffigbox[\FBwidth]
{\caption{Caption for subfigure 2}\label{lab2}}
{\rule{5cm}{1cm}}
\end{subfloatrow}}
{\caption{General caption}
\label{lab}}
\end{figure}
As we see in subfigures~\ref{lab1} and~\ref{lab2}, which are subfigures to Figure~\ref{lab}...
\end{document}
如果你不想让子图出现在 LoF 中,请更改
\captionsetup[subfloat]{labelformat=simple,listformat=simple}
到
\captionsetup[subfloat]{labelformat=simple,list=no}