我已经发布了一个问题标题和 floatfoot 与 floatrow 的宽度不同(其中包含 MWE)关于\floatfoot
在包中设置标题和宽度floatrow
,这个问题的回答非常精彩!我不确定是否应该创建一个新问题,尽管相关,所以请随时告诉我,如果我应该简单地将其作为评论添加到上一个答案中。
无论如何,我想知道,相对于上一个问题中使用的方法,设置标题自定义宽度的最佳方法是什么。我做了一些研究,发现使用 ctable 的标题和脚注宽度,但它似乎特别涉及ctable
包装和环境。
所以我想知道在第一个链接中获取标题特定宽度的最佳方法是什么。我不确定类似minipage
或类似的方法是否是合适的解决方案,或者定义宽度的最佳/最合适的方法是什么。
答案1
您可以使用\parbox
所需宽度。例如,要获得等于文本区域宽度 0.6 倍的宽度,您可以这样写:
\documentclass{article}
\usepackage[demo]{graphicx}
\usepackage{floatrow}
\usepackage{siunitx}
\begin{document}
\begin{figure}
\parbox{.6\textwidth}{\RawCaption{\caption{Selected Interatomic Distances of Protons in $\beta$-Pinene Normal Lactone}\label{fig:noeDistances}}}\vskip1ex
\floatbox[{\captop}]{figure}[\FBwidth]
{}
{\includegraphics{nOeDistances}
\floatfoot{\textsuperscript{1}All distances reported are in \si{\angstrom}.\\ \textsuperscript{2}Selected carbon numbering is given in cyan.}}
\end{figure}
\end{document}