使用 tikz 复制反应方案

使用 tikz 复制反应方案

我想复制与提供的图像类似的反应方案。这是我迄今为止尝试过的,但我对 chemfig 还不熟悉,所以我不确定我在做什么。请提供您的专业知识。谢谢。图像

\documentclass[tikz]{standalone}
\usepackage{chemfig,siunitx}
\usetikzlibrary{calc,arrows,shapes,positioning}
\DeclareSIUnit{\molar}{M}
\pgfplotsset{compat=newest} 
\pagestyle{empty}
\setcompoundsep{7em} % (not exactly) the length of the arrows

\begin{document}

\schemestart
H \arrow(--HH){<=>[$K_{HH}$]}[90] HH \+ G \arrow(--GG){<=>[$K_{GG}$]}[-90]GG
\arrow{<=>[$K_{1}$]} HG
\arrow{<=>[$K_2$]} $HG_2$
\schemestop
\end{document}

答案1

你可以\subscheme这样使用:

\documentclass{standalone}
\usepackage{chemfig}

\begin{document}

\schemestart
\subscheme{H\arrow{<=>[*{0}$K_{hd}$]}[-90]H:H}%
\hspace{-1em}+\hspace{-1em}\subscheme{G\arrow{<=>[*{0}$K_{gd}$]}[90]G:G}%
\arrow{<=>[*{0}$K_{1}$]}H:G%
\arrow{<=>[*{0}$K_{2}$]}H:G:G
\schemestop

\end{document}

在此处输入图片描述

相关内容