chemnum:化合物编号没有在 .eps 文件 (chemdraw) 中的正确位置替换 TMP

chemnum:化合物编号没有在 .eps 文件 (chemdraw) 中的正确位置替换 TMP

我对 LaTeX 还很陌生,对这个网站更是陌生,所以请提前原谅我可能犯下的所有错误。

这是我的问题:我试图替换 .eps 文件(使用 chemdraw 制作)中的临时标签(TMP1,...),在我的硕士论文的 modus operandi 章节中,但它没有按应有的方式工作。TMP 标签确实消失了,但预期替换它们的 1、2 和 3 出现在图的左侧,根本不在它们应该在的位置。此外,dvi 文件中的图表上还出现了一条消息,上面写着“frag replacements”。当我尝试将其导出为 pdf 时,它甚至没有更改标签,我被困在 TMP1、2、3 中。

以下是代码:

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


%Packages

\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage[T1]{fontenc}
\usepackage{graphicx}
\usepackage{epstopdf}
%chemistry packages
\usepackage{chemstyle}
\usepackage{chemscheme}
\usepackage{chemschemex}
\usepackage{chemnum}

\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}{}



%Titre
\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)}

\begin{scheme}[ht]

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

   \replacecmpd[TMP1]{a}
    \replacecmpd[TMP2]{b}
    \replacecmpd[TMP3]{c}
    \includegraphics[scale=0.7]{Schema_Synthese_3.eps}

        \caption{Schéma réactionnel 1}

\end{scheme}


\end{document}

并给出以下结果:在此处输入图片描述

你可以帮帮我吗 ?

编辑:这是.eps 文件

答案1

您看到的结果是由于未正确编译文档文件。以下工作流程将提供已替换标签的 PDF 文件

latex file
dvips file -o
pstopdf file.ps

然后输出在 中file.pdf。或者,你可以删除epstopdf包并加载auto-pst-pdf包,使用

\usepackage{auto-pst-pdf}

在你的序言中,然后简单地编译

pdflatex -shell-escape file

示例输出

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


%Packages

\usepackage[utf8]{inputenc}
\usepackage[francais]{babel}
\usepackage[T1]{fontenc}
\usepackage{graphicx,auto-pst-pdf}
%\usepackage{epstopdf}
%chemistry packages
\usepackage{chemstyle}
\usepackage{chemscheme}
\usepackage{chemschemex}
\usepackage{chemnum}

\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}{}



%Titre
\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[TMP1]{a}
    \replacecmpd[TMP2]{b}
    \replacecmpd[TMP3]{c}
    \includegraphics[scale=0.7]{Schema_Synthese_3.eps}

        \caption{Schéma réactionnel 1}

\end{scheme}


\end{document}

相关内容