我使用提供浮动的 Memoir 类marginfigure
来允许在边距中设置图形。但是,我对图形和标题之间的间距的排版并不完全满意。
设置正常abovecaptionskip
似乎不会影响边距图形标题。
我也尝试过类似下面的命令,但没有任何效果。
\setmarginfloatcaptionadjustment{figure}{\vspace*{-20pt}}
这能实现吗?
答案1
尝试这个:
\begin{marginfigure}
\setlength{\abovecaptionskip}{0pt} % or whatever length suits you
\setlength{\belowcaptionskip}{0pt} % or whatever length suits you
A MARGINFIGURE
\caption{The caption}
\end{marginfigure}
我不知道您将标题放在了图表的上方还是下方。
戈美