Henrik Skov Midtiby

Results 8 comments of Henrik Skov Midtiby

I like that idea. A question about how to use such a feature, would the following be a proper approach according to you? ``` \missingfigure[image=filname]{Image of something.} ```

One approach to do this is the following. The `\missingfigure` is quite flexible and can be persuaded to the requested. This however breaks the `\listoftodos` ... ``` \documentclass{article} \usepackage{todonotes} \newcommand{\missingimage}[2]{\missingfigure{\begin{center}\includegraphics[width=5cm]{#1}...

Thanks for the bug report. I have a hard time deciphering the code, especially the \myMacro part. Can you try to make a minimal working example of the issue, that...

Thanks for the description of the issue. The dvistyle option was added long time ago to fix a rendering issue related to the .tex -> .dvi -> .pdf processing pipeline....

You might want to do something like this. ``` \documentclass{article} \usepackage{todonotes} \usepackage{xparse} \makeatletter \let\original@section=\section \RenewDocumentCommand\section{s O{} m}{% \IfBooleanTF{#1}{% \original@section*{#3}% }{% \original@section{#3}% \addcontentsline{tdo}{section}{\thesection{} #3} } } \makeatother \begin{document} \section{A} \todo{First todo}...

Thanks for the bug report. I have tried to recreate the issue with the following minimal example. The code below works with `--shell-escape`, but fails if line four is enabled...

Thanks for the detailed suggestion for improving the todonotes package. I think that the idea and implementation of the definetodostyle is very elegant and useful. You are very welcome to...

The same problem is triggered with the code below, which does not rely on todonotes. ``` \documentclass{article} \usepackage{breqn} \usepackage{tikz} \begin{document} \begin{tikzpicture} \draw (0, 0) node{$G,N$}; % Ok %\draw (0, 0)...