
私は、余白図とサイド脚注用に広い余白を持つ memoir クラスを使用しています。memman によると、\sidefootadjust
0 に設定すると、サイド脚注はマージンの下部に配置されます。以下の私の MWE では、サイド脚注は下部近くに配置されていますが、一番下まで配置されていません。私は、サイド脚注をできるだけ下に配置して、その上のスペースを余白図に使用できるようにしたいと考えています。
質問13cm などに変更すると、\sidefootadjust
脚注は一番下まで表示されますが、ドキュメント全体にこの変更を加える前に、デフォルト設定の 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}
出力は次のようになります。