[Tex/LaTex] How to avoid getting cropped marginpar

fixmegeometrymarginparmargins

I'm using the fixme package to add notes to various parts of my thesis draft. However, if I set the margins using the geometry package, I notice that the fixme notes are not formatted correctly (with margin overflow). Is there a simple fix? MWE below:

\documentclass[letterpaper]{amsbook}
\usepackage[draft]{fixme}
\usepackage[lmargin=1.3in,rmargin=1.3in,bottom=1.3in,top=1.3in,twoside=False]{geometry}

\begin{document}
\listoffixmes


stuff \fixme{Here is where I would put a really long fixme note, so long in fact that it might seem silly....}

\end{document}

Best Answer

There doesn't seem to be any problem; the "fixme" notes, for which the command \fxnote should be used instead of the deprecated \fixme, are typeset with the width of the normal marginal notes, which is the parameter \marginparwidth; indeed, adding

marginparwidth=0.5in

to the options passed to geometry typesets the note in a very narrow column.

Related Question