
我正在使用回憶錄類,其頁邊距和旁注的邊距很寬。根據 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}
及其輸出: