I use memoir class and, in some situations, I use the \sidefootnote command.
It works but not the right justification.
I've tried with \newcommand*{\sidefootform}{\rightskip=\z@ \@plus 2em} but I've got an error message (command already in use).
I've tried with \renewcommand*{\sidefootform}{\rightskip=\z@ \@plus 2em} but error message.
I've tried with:
\usepackage{ragged2e}
\newcommand*{\sidefootform}{\RaggedRight}
but no effect at all. Any suggestion? Thanks PM
\renewcommand*{\sidefootform}{\rightskip=\z@ \@plus 2em}will work if placed between\makeatletterand\makeatotherbut only reproduces the default setting. If you want the notes justified add\renewcommand*{\sidefootform}{}to your preamble. – cgnieder Dec 11 '13 at 19:26