我希望标题尽可能接近其图片。这可以通过 轻松实现\usepackage[skip=0pt]{caption}
。但是,如果包处于活动状态,则此解决方案不起作用chemscheme
。
使用 时chemscheme
,选项skip=0pt
将被忽略。表格也会发生这种情况。我如何才能继续使用chemscheme
,同时将标题放在靠近图形/表格的位置?
感谢所有尝试提出解决方案的人。
%example of the right square image
\documentclass{report}
\usepackage{graphicx}
\usepackage[skip=0pt]{caption}
\usepackage{chemscheme} %removing this line gives the left square image
\begin{document}
\begin{figure}
\centering
\includegraphics{square.png}
\caption{chemscheme is on}
\end{figure}
\end{document}
答案1
在内部使用的包\floatsetup{captionskip=0pt}
的帮助下:floatrow
chemscheme
\documentclass{report}
\usepackage[demo]{graphicx}
\usepackage{chemscheme} %removing this line gives the left square image
\usepackage{caption}
\floatsetup{captionskip=0pt}
\begin{document}
\begin{figure}
\centering
\includegraphics{square.png}
\caption{chemscheme is on}
\end{figure}
\end{document}