Chemnum 使临时标记 TMP 消失,但不会替换它们

Chemnum 使临时标记 TMP 消失,但不会替换它们

这个问题是我本周早些时候发布的一个问题(这里)

我在使用 chemnum 替换使用 chemdraw 制作的方案中的临时标签(TMP1、TMP2、TMP3)时遇到了麻烦。它确实会影响标签,因为它们会消失,但根本没有被替换。

这是我使用的代码:

\documentclass[a4paper,12pt,notitlepage]{book}


%Packages
\RequirePackage{etex}
\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage[crop=off]{auto-pst-pdf}
\usepackage{psfrag}

%chemistry packages
\usepackage{chemstyle}
\usepackage{chemnum}
\usepackage{chemscheme}
\usepackage{titling}

\usepackage{titlesec}    %to correct spacing of chapters
        \titleformat{\chapter}[display]
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter}{20pt}{\Huge}
\titlespacing*{\chapter}{0pt}{-50pt}{20pt}
    \titleformat{\chapter}[hang]
{\normalfont\huge\bfseries}{\chaptertitlename\ \thechapter:}{1em}{}



%Title
\title{Partie expérimentale}
\author{Me}


\begin{document}

\chapter{Partie Expérimentale}
\section{Synthèse du thiéno[3,2-b]thiophène-2,5-diylbis((3-bromothiophèn-2-yl)méthanol)}


\cmpd*{a}
\cmpd*{b}
\cmpd*{c}

\begin{scheme}[ht]
   \replacecmpd{a}
    \replacecmpd{b}
    \replacecmpd{c}

        \includegraphics[scale=0.7]{Schema_Synthese_3.eps}


                \caption{Schéma réactionnel 1}

\end{scheme}


\end{document}

结果如下:在此处输入图片描述

这是.eps 文件如果需要的话。

关于如何获得我想要的标签,有什么建议吗?

答案1

好的,问题出在cm-super fonts未安装,因此使用了位图字体。答案找到了这里

相关内容