我正在尝试在 .eps 文件中获取基于 chemnum 中的 psfrag 的替换功能,以便与 Overleaf 中的 pdfLaTeX 配合使用。我知道我需要一个软件包,例如 auto-pst-pdf、epstopdf、eps-to-pdf 甚至 pstool(旨在与 psfrag 配合使用)。我读了很多 StackExchange 帖子,但我无法让它在 Overleaf 中工作。
\documentclass[11pt, a4paper, openany]{scrartcl}
\usepackage[utf8]{inputenc} %for inputting international characters
\usepackage[T1]{fontenc} %output font encoding for international characters
\usepackage[crop=off,runs=2]{auto-pst-pdf}
\usepackage{chemnum}
\usepackage{bpchem}
\usepackage[version=4]{mhchem}
\ExplSyntaxOn
\cs_new:Npn \chemmacros_load_module:n #1 {} %ghs wont function without it
\ExplSyntaxOff
\usepackage{ghsystem} %for ghs symbols and senteces
\title{test}
\begin{document}
\maketitle
\section{Introduction}
\begin{scheme}
\centering
\replacecmpd{comp1}
\replacecmpd{comp2}
\replacecmpd{comp3}
\includegraphics{overview.eps}
\caption{A test to make the numbering work}
\label{sc:overview}
\end{scheme}
\end{document}
先感谢您!