答案1
我设法自己解决了这个问题,并想分享我的解决方案。感谢@clemens 提供的软件包建议。
下面是一个 MWE,以及生成的输出图像。结果显示了一些对齐问题,我选择不纠正此示例,因为它们与此处的主要问题无关,而我使用的解决方案只会混淆图表的代码,因此不适合 MWE。我选择在序言中调用不同包的方式解决了我之前报告的冲突包问题,同时仍然加载相同的包和设置。
\documentclass{article}
\usepackage{chemmacros}
\chemsetup{formula=mhchem,modules=newman} % Loads mhchem package and newman module
\begin{document}
\begin{figure}
\centering
\caption{Newman projections of the four butane conformational isomers.}
\newman{\hspace*{3mm} \ce{CH3},H,H,\hspace*{3mm} \ce{CH3},H,H}
\newman(73){\hspace*{3mm} \ce{CH3},H,H,\ce{CH3},H,H}
\newman(120){\hspace*{3mm} \ce{CH3},H,H,\ce{CH3},H,H}
\newman(193){\hspace*{3mm} \ce{CH3},H,H,\ce{H3C} \hspace*{3mm},H,H}
\end{figure}
\end{document}