使用包 todonotes 和 auto-pst-pdf 不起作用

使用包 todonotes 和 auto-pst-pdf 不起作用

我需要 auto-pst-pdf,这样 chemnum 包就可以自动对我在 figueres 中使用的化学品进行编号。但我遇到一个问题,如果我同时使用 todonotes 包,我的 TexShop 就会停止工作。

所以我用这个例子。

% !TEX encoding = UTF-8 Unicode
\documentclass[
a4paper,                       %% DIN A4-Papier
DIV=calc,                       %% Satzspiegel berechnen
11pt,                          %% Schriftgröße
captions=tableheading,         %% Tabellenüber- statt unterschriften
english
]{scrreprt}                    %% KOMA-Skript Report als Klasse

\usepackage[colorinlistoftodos,prependcaption]{todonotes}       %%ToDo-Notes. 
\usepackage{chemnum}              %% Numbering chemical compounds
\usepackage{auto-pst-pdf}         %% needed for replacing temporary strings to numbers

\begin{document}
\listoftodos

Bla blub
\todo{Deckblatt designen}

\begin{figure}
    \centering
    \replacecmpd{cmpd:1}
    \replacecmpd{cmpd:2}
    \replacecmpd{cmpd:3}
    \includegraphics[width=1\textwidth]{ChemDraw/CHI-014-CD15.eps}
\end{figure}

\end{document}

如果我注释掉所有 todonotes 或 auto-pst-pdf,一切都会正常工作(除了我没有 todo 注释或我的临时字符串当然不会被替换)

此输出后,TexShop 停止工作。 在此输出之后,TexShop 停止工作

这是完整的 .log 文件

有人能给我提出解决这个问题的办法吗?

相关内容