Todonote neben Figuren/Floats

Todonote neben Figuren/Floats

Ich stehe vor einem sehr grundlegenden Problem bei der Arbeit mit demtodonotesPaket. Wie kann ich eine To-do-Notiz direkt neben einer Abbildung platzieren?

Ich wäre für eine einfache Lösung wie beispielsweise einen geänderten todoBefehl sehr dankbar, da es sich bei diesen Kommentaren lediglich um temporäre Aufgabennotizen handelt ...

MWE

\documentclass{article}
\usepackage{todonotes}

\usepackage{blindtext} % for dummy text
\usepackage{tikz}      % for dummy pic

\begin{document}    
  \blindtext % dummy paragraph

  \begin{figure} % dummy figure
    \centering
    \begin{tikzpicture}\draw(0,0) rectangle (5,3);\end{tikzpicture}
    \caption{dummy caption}
  \end{figure}%
  \todo[noline]{I need this comment to be situated beside the figure...}  

  \blindtext % dummy paragraph  
\end{document}

Problembeschreibung

Antwort1

\documentclass{article}
\usepackage{todonotes}
\usepackage{marginnote}

\usepackage{blindtext} % for dummy text
\usepackage{tikz}      % for dummy pic

\begin{document}    
  \blindtext % dummy paragraph

  \begin{figure} % dummy figure
    \marginnote{I need this comment to be situated beside the figure...}
    \centering
    \begin{tikzpicture}\draw(0,0) rectangle (5,3);\end{tikzpicture}
    \caption{dummy caption}

  \end{figure}%
  \todo{this note will show up on the todo list}


  \blindtext % dummy paragraph  
\end{document}

verwandte Informationen