
저는 여백과 측면 각주에 넓은 여백을 두고 회고록 클래스를 사용하고 있습니다. 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}
그리고 그 출력은 다음과 같습니다: