\marginpar
commands. In the following document, I would expect the marginal comment to be aligned with the first row of the second paragraph. Instead, it is aligned with the last line of the first paragraph. Why is that, and is there a good way to get around it?
If I put
\marginpar{Margin}
after the first word of the second paragraph, I get the result I want, but it is tedious to do so in general -- especially if I would like the \marginpar
to be generated by a macro. Code: Select all
Code, edit and compile here:
\documentclass{article}\usepackage{blindtext}\begin{document}\blindtext\marginpar{Margin}\blindtext\end{document}