我使用 memoir 类,其边距较宽,用于边距图和侧脚注。根据 memman,当\sidefootadjust
设置为 0 时,侧脚注将放置在边距的底部。在下面的 MWE 中,它们放置在底部附近,但不是一直向下。我希望将它们放置得尽可能靠下,这样我就可以使用它们上方的空间来放置边距图。
问题 1如果我将\sidefootadjust
其更改为 3cm 之类的值,我会让脚注一直向下,但在我对整个文档进行此更改之前,我想知道为什么在默认设置 0 下我没有得到手册中描述的行为。
问题2如果我注释掉\setlength{\sidefootwidth}{\marginparwidth}
脚注文本的宽度就会小于\marginparwidth
。根据 memman 的默认设置\sidefootwidth
是 \marginparwidth
但显然我必须明确设置它。
这些问题可能与我如何定义文本大小有关,尽管我不知道原因。
以下是 MWE:
\documentclass[11pt]{memoir}
\synctex=1
\usepackage{graphicx}
\usepackage{lipsum}
% page dimensions
\settypeblocksize{54.3163pc}{*}{0.5}
\setbinding{1pc}
\setlrmargins{4.312pc}{*}{*}
\setulmargins{6.1pc}{*}{*}
\setheadfoot{0pt}{2.5\onelineskip}
\setmarginnotes{2pc}{12pc}{2\onelineskip}
\checkandfixthelayout
\setlength{\headheight}{14.2pt}
% Footnotes (see memman p 249, Sct 12.5 SIDE FOOTNOTES)
\footnotesinmargin
\setlength{\sidefootwidth}{\marginparwidth}
\setlength{\sidefootadjust}{0pt}
\renewcommand{\foottextfont}{\scriptsize\raggedright}
%figure captions
\captionstyle{\small\raggedright}
\captionnamefont{\small\bfseries\sffamily}
\begin{document}
\chapter{Side footnotes in memoir}
Here is the first footnote\sidefootnote{First side footnote. }
\lipsum[1]
\begin{marginfigure}[-8cm]
\includegraphics[width=\textwidth]{example-image-a}
\caption{Example figure}
\end{marginfigure}
Here is the second footnote\sidefootnote{Second side footnote. Footnotes are placed near the bottom of the margin but they do not sink to the bottom. I'd like to push them as far down to leave space for margin figures at the top. }
\lipsum[2]
\begin{marginfigure}[-7cm]
\includegraphics[width=\textwidth]{example-image-b}
\caption{Example figure}
\end{marginfigure}
\lipsum[3-4]
Here is the third side footnote\sidefootnote{Third side footnote. }
\end{document}
及其输出: