When using the marginnote package and writing two \marginnote{text} fields directly after each other, the two nodes clash into each other. MWE:
\documentclass{memoir}
\usepackage{marginnote}
\begin{document}
\marginnote{first}
\marginnote{second test}
\end{document}
Can this be fixed, so that the second marginnotes automatically is vertically moved -- that is, without using the optional argument to manually move it?
I'm actually trying to create a custom citation command, based on the alphabetic-style-cite-command. I want the citation to put the label in the text and add a marginnote with some more bibliographic information on the cited object. The above problem occurs, when multiple objects are cited, i.e. in \cite{label1,label2}.
This then generates the above marginnotes for each cited object. I think the actual DeclareCiteCommand details are not important here, so I only add the above MWE (I can of course also give more details, if necessary).

\marginpargood for you? If you don't insist on usingmarginnote, simply change\marginnoteto\marginpar. – bmv Jan 20 '18 at 15:07