
Estoy usando la clase de memorias con un amplio margen para figuras de margen y notas a pie de página. Según memman, cuando \sidefootadjust
se establece en 0, las notas a pie de página se colocan en la parte inferior del margen. En mi MWE a continuación, están colocados cerca del fondo pero no completamente hacia abajo. Me gustaría que se colocaran lo más abajo posible para poder usar el espacio encima de ellos para las figuras de los márgenes.
Pregunta 1Si cambio \sidefootadjust
a algo así como 3 cm, las notas a pie de página bajan hasta el final, pero antes de realizar este cambio en todo el documento quiero saber por qué no obtengo el comportamiento descrito en el manual con la configuración predeterminada de 0.
Pregunta 2Si comento, \setlength{\sidefootwidth}{\marginparwidth}
el ancho del texto de la nota al pie se vuelve menor que \marginparwidth
. Según memman, el valor predeterminado para\sidefootwidth
es \marginparwidth
pero aparentemente tengo que configurarlo explícitamente.
Es posible que los problemas tengan que ver con cómo defino el tamaño del texto, aunque no veo por qué.
Aquí está el 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}
y su salida: