I'm looking for solutions to typeset margin/side notes
- vertically in a
marginpar
starting from the bottom next to the main text body, similar to what was achieved here, and - capable of handling multiple notes from the same page to appear in the same paragraph in
marginpar
, similar to what is achieved infootmisc
ormanyfoot
with[para]
option, as shown in the picture below, in which three side notes are in the same paragraph.
Ideally I'd like to have the notes go on into the next page if the margin is full. But I'm happy to manually inserting \newpage
for the time being.
Below is a minimal compilable test file in which I want to move the footnotes to the right margin, and rotate 90 degrees anticlockwise.
\documentclass{book}
\usepackage[para*]{manyfoot}
\DeclareNewFootnote[para]{A}[arabic]
\newcommand{\mynote}[1]{% to be redefined
\FootnotetextA{}{#1}%
}
\begin{document}
Lorem\mynote{note 1} ipsum dolor sit amet, consectetur adipiscing
elit\mynote{note 2}. Aliquam gravida nec nulla sit amet
rutrum\mynote{note 3}.
\end{document}
document
environment.