\hspace{0pt}
right before \marginpar{Margin}
produces the desired result.Code: Select all
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\blindtext
\hspace{0pt}\marginpar{Margin}%
\blindtext
\end{document}
\hspace{0pt}
right before \marginpar{Margin}
produces the desired result.Code: Select all
\documentclass{article}
\usepackage{blindtext}
\begin{document}
\blindtext
\hspace{0pt}\marginpar{Margin}%
\blindtext
\end{document}
Ah yes, good point... It appears that the problem has to do with the way \maketitle is defined in my documentclass.As always, you should clarify the issue by a minimal example.
Code: Select all
\begin{overlayarea}{\textwidth}{3cm}
\only<1>{\includegraphics{xxx}}
\only<2>{\includegraphics{yyy}}
\end{overlayarea}
Perfect! That's it!localghost wrote: Adding the txfonts package has the result shown in my first reply.