使用 时\subcaptionbox
,可以使用可选的简短标题吗?我的意思是,
\subcaptionbox[short]{long \label{}}{\includegraphics}
文档中没有提到使用短标题\subcaptionbox
。
答案1
它就在那里,从第 11 页开始看。无论如何,这是一个可行的示例。正如第 3 页的脚注所述,您需要将选项传递list=true
给包以获取图形列表中的子图标题。
\documentclass{article}
\usepackage[list=true]{subcaption}
\begin{document}
\listoffigures
\begin{figure}[htp]
\centering
\subcaptionbox[Short subfigure title]{A long figure caption with much
explanation}{\rule{3cm}{2cm}}\qquad
\subcaptionbox[Short subfigure title]{A long figure caption with much
explanation}{\rule{3cm}{2cm}}
\caption[Figure caption]{Figure full caption}\label{fig:ex}
\end{figure}
\end{document}