我使用marginfigure
,这样小数字就可以位于引用它们的文本旁边。但我无法阻止标题延伸到页脚。
以下是一个例子:
\documentclass{memoir}
% to load the image
\usepackage{graphicx}
% let's get that page number across to the figure
\pagestyle{ruled}
\begin{document}
\section{Introduction}
Use \textbackslash{}vfill to quickly get near the bottom of the page.
\vspace{6.5in}
Aaaand we're back. Now let's add the margin figure. Works best with a tall/portrait image.
\begin{marginfigure}
\includegraphics[width=\marginparwidth]{awkward}
\caption{A long, but not unreasonably long, figure caption that extends into the footer and depending on your pagestyle can overwrite the page number (which looks weird, a number floating in your caption).}
\end{marginfigure}
\end{document}
看起来,marginfigure 是垂直居中的,但是对于标题文本向下延伸的距离没有限制。
我可以阻止这种情况发生吗,还是我必须插入一堆分页符?
(免责声明:我对乳胶还比较陌生)
答案1
及其marginfigure
标题采用minipage
默认center
定位,不会跨页中断。
你可以把marginfigure
上面的放在页面上,或者问 Lars Madsen ([电子邮件保护]memoir to do something like enabling the
), minipage b
and
t`选项的维护者。
无论如何,您有时必须手动控制结果 ---marginfigure
如果默认值太低或t
选项将延伸到正常文本以下,或者marginfigure
如果默认值太高或b
选项将延伸到正常文本以上。