将 Chemfig 反应置于一个圆圈中

将 Chemfig 反应置于一个圆圈中

不久前,我的一位老师给我们提供了有机化学反应摘要,例如假设主题是苯,摘要如下:

在此处输入图片描述

我想知道这是否可以在 LaTeX 中复制。我已经开始研究 chemfig,但有没有方便的方法可以制作这样的反应“圈”?即自动均匀间隔,将反应条件放在箭头上等,

谢谢!

答案1

与环的中心对齐

\documentclass[border=5mm]{standalone}
\usepackage{tikz}
\usepackage{chemfig}
\setchemfig{arrow head=-latex, arrow coeff=2}
\begin{document}
\schemestart
\chemfig{**6(------)}
\arrow(cr--){->[*{0}up][*{0}down]}[30]\chemfig{**6((-[6,3,,,draw=none])----(-S(=[0]O)(=[4]O)-[2]OH)-(-[2,3,,,draw=none])-)}
\arrow(@cr--)[90]\chemfig{**6(----(-NO_2)--)}
\arrow(@cr--)[150]\chemfig{**6((-[6,2,,,draw=none])----(-Br)-(-[2,2,,,draw=none])-)}
\arrow(@cr--)[210]\chemfig{**6((-[6,2,,,draw=none])----(-CH_3)-(-[2,2,,,draw=none])-)}
\arrow(@cr--)[270]\chemfig{**6((-[4,3,,,draw=none])--(-[0,3,,,draw=none])-(-C(=[2]O)-[:330]CH_3)---)}
\arrow(@cr--)[330]\chemfig{*6(------)}
\schemestop
\end{document}

在此处输入图片描述

答案2

字幕是给你放的。

\documentclass[margin={2mm 2mm}]{standalone}
\usepackage{tikz}
\usepackage{chemfig}

\begin{document}
\schemestart
\chemfig{**6(@{a}-@{b}-@{c}-@{d}-@{e}-@{f}-)}
%
\arrow(@{a}--){->}[210,2]\chemfig{**6(----(-CH_3)--)}
\arrow(@{b}--){->}[270,2]\chemfig{**6(---(-C(=[2]O)-[:330]CH_3)---)}
\arrow(@{c}--){->}[330,2]\chemfig{*6(------)}
\arrow(@{d}--){->[*{0}up][*{0}down]}[30,2]\chemfig{**6(----(-S(=[0]O)(=[4]O)-[2]OH)--)}
\arrow(@{e}--){->}[90,2]\chemfig{**6(----(-NO_2)--)}
\arrow(@{f}--){->}[150,2]\chemfig{**6(----(-Br)--)}
%
\schemestop
\end{document}

在此处输入图片描述

相关内容