尽管我大量使用了该论坛提供的帮助,但这是我第一次真正提出问题,所以我希望不要搞砸了:)
我正在用 LaTeX 写我的化学项目提案,但我不是专家。我使用 chemstyle 包对化合物进行编号,一切都很顺利。但是,我想用自定义标签(我不知道,例如 EG1)替换数字。我该怎么做?
更复杂的是,是否有可能将两个独立的化合物系列并行在一起?一个系列的编号与往常一样,另一个系列的编号则带有自定义标签。
我想要做的是在提案的背景部分使用正常编号,其中我引用文献化合物(我想将其编号为 1,2,3......),而我想使用自定义标签来标记我将要合成的化合物(EG1、EG2......)。
希望问题不是太模糊并且我已经足够清楚地解释了我的问题。
编辑:我已按照建议添加了 MWE。我无法上传 EPS 文件,因此我链接了文件所在的背面文档。
\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage[english]{babel}
\usepackage{psfrag}
\usepackage[journal=rsc]{chemstyle}
\usepackage{graphicx}
\begin{document}
\begin{figure}
\schemeref{1}
\schemeref{2}
\schemeref{3}
\includegraphics[width=0.8\linewidth]{Screening_hits}
\caption{Compounds with normal numbering}
\end{figure}
\begin{figure}
\schemeref{EG1}
\schemeref{EG2}
\schemeref{EG3}
\schemeref{EG4}
\includegraphics[width=0.8\linewidth]{MWE_custom}
\caption{Compounds with indipendent, custom numbering}
\end{figure}
\end{document}