我正在使用chemstyle
。当不使用包时,编号和方案在memoir
课堂上工作正常epstopdf
。这是正在运行的代码。
\documentclass{memoir}
\usepackage{graphicx}
%\usepackage{epstopdf}
\usepackage[runs=2]{auto-pst-pdf}
\usepackage[journal=angew,varioref=false,tracking=bpchem]{chemstyle}
\begin{document}
\begin{scheme}[hbt!]
\centering
\schemeref[TMP1]{t6poca}
\schemeref[TMP2]{tcta}
\schemeref[TMP3]{tpa}
\schemeref[TMP4]{tpa2}
\includegraphics[width=\textwidth]{retroexp.eps}
\caption{Retrosynthesis of expanding from}
\label{retro1}
\end{scheme}
\end{document}
然后我使用修改后的回忆录类并将各部分分成不同的 .tex 文档。但出现错误:
Process started: pdflatex -shell-escape -synctex=1 -interaction=nonstopmode "thesis".tex
This is dvips(k) 5.993 Copyright 2013 Radical Eye Software (www.radicaleye.com) ' TeX output 2015.05.02:1751' -> thesis-autopp.ps
dvips: Font Times-Roman used in file retroexp.eps is not in the mapping file. </usr/share/texlive/texmf-dist/dvips/base/tex.pro> </usr/share/texlive/texmf-dist/dvips/config/alt-rule.pro> </usr/share/texlive/texmf-dist/dvips/pstricks/pstricks.pro>
</usr/share/texlive/texmf-dist/dvips/pstricks/pst-algparser.pro> </usr/share/texlive/texmf-dist/dvips/pst-tools/pst-tools.pro> </usr/share/texlive/texmf-dist/dvips/pstricks/pst-dots.pro> </usr/share/texlive/texmf-dist/dvips/psfrag/psfrag.pro> </usr/share/texlive/texmf-dist/fonts/enc/dvips/base/8r.enc> </usr/share/texlive/texmf-dist/dvips/base/texps.pro> </usr/share/texlive/texmf-dist/dvips/base/special.pro> </usr/share/texlive/texmf-dist/dvips/base/color.pro>. </usr/share/texlive/texmf-dist/fonts/type1/urw/helvetic/uhvb8a.pfb> </usr/share/texlive/texmf-dist/fonts/type1/urw/times/utmr8a.pfb>[1 <./retroexp.eps>
]
Error: /undefined in --get-- Operand stack: blank --dict:15/15(ro)(L)-- space Execution stack: %interp_exit .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- --nostringval-- --nostringval-- false 1 %stopped_push 1916 1 3 %oparray_pop 1915 1 3 %oparray_pop 1899 1 3 %oparray_pop 1787 1 3 %oparray_pop --nostringval-- %errorexec_pop .runexec2 --nostringval-- --nostringval-- --nostringval-- 2 %stopped_push --nostringval-- Dictionary stack: --dict:1176/1684(ro)(G)-- --dict:1/20(G)-- --dict:123/200(L)-- --dict:5/6(ro)(L)-- --dict:181/300(L)-- --dict:45/200(L)-- --dict:197/210(L)-- Current allocation mode is local Last OS error: No such file or directory Current file position is 141251 GPL Ghostscript 9.10: Unrecoverable error, exit code 1
Process exited with error(s)
这是根文件:
%!TEX ROOT=thesis.tex
\documentclass{UMalChemThesis}
\usepackage{graphicx}
\usepackage[crop=off,runs=2]{auto-pst-pdf}
\usepackage[journal=angew,varioref=false,tracking=bpchem]{chemstyle}
%%%%%%%%%%%
% List of Schemes
% not yet know how to make it simpler
% feel free to change it
%%%%%%%%%%
% to override chemstyle using memoir command
\newlistof{listofschemes}{los}{\listschemename}
\newlistentry{scheme}{los}{0}
% make new command \listallcontents to list ToC, lof, lot, los, loacr, loapp
% modify here for any new list
% the order of the list determines the sequence which they would appear in the output
\newcommand{\listallcontents}{{\clearpage\SingleSpacing
\tableofcontents\clearpage
\listoffigures\clearpage
\listoftables\clearpage
\listofschemes\clearpage
\listofacronyms\clearpage
\listofappendices\clearpage}}
% make scheme caption on top of scheme
\floatsetup[scheme]{style=plaintop}
\usepackage{lipsum}
\usepackage{csquotes}
\addbibresource{achs.bib}
\author{bk.ong}
\title{blah blah blah}
\submissionyear{2015}
\degree{Doctor of Philosophy}
% load acronym definitions from separate file
\loadglsentries{acronyms}
\setlength{\glsdescwidth}{.7\textwidth}
\begin{document}
\frontmatter
\makecoverandtitlepage
\declarationpage
%\abstractfromfile{sample-abstract}
\msabstractfromfile{sample-msabstract}
\acknowledgements{Thanks guys. I owe you many.}
\listallcontents % list ToC, lof, lot, etc...
\mainmatter
%\include{Introduction}
%\include{RESULTS}
\include{test})
\backmatter
\SingleSpacing\printbibliography
\begin{appendices}
\startapps
%\include{sample-appen-manual}
%\include{sample-appen-try}
\finishapps
\end{appendices}
\end{document}
以下是修改后的回忆录文件:
该文件的 tex 根是 thesis.tex。Chemstyle 应该转换了 retroexp.eps,但却找到了空白的 thesis-pics.pdf。如果我epstopdf
也使用包。那么,方案是正确的,但标记“TMP”仍然存在。
有人能帮我解释一下错误信息吗?谢谢!
答案1
终于解决了。唯一的变化是mathptmx
。tgtermes
并且,在hyperref
选项中,禁用 breaklinks 并设置 implied=false。
因此,在 UMalChemThesis.cls 中:
\RequirePackage{tgtermes}
%\RequirePackage{mathptmx}
\RequirePackage[implicit=false,pdfborder={0 0 0}]{hyperref}
感谢 Johannes_B