[Tex/LaTex] chemfig: reaction above arrow

arrowschemfig

I want to typeset a small reaction above a reaction arrow inside a scheme. Putting a \subscheme{} into the first of argument of \arrow unfortunately breaks the layout. Should I just try to position the nodes it manually inside a tikzpicture?

The main arrow and the reaction under the arrow in this example basically illustrate what I'm trying to achieve, the difference being that I want the reaction to be above the arrow (flipped horizontally)
Example

Current attempt:

\documentclass{article}
\usepackage[english,ngerman]{babel}
\usepackage{chemfig}
\begin{document}


\section*{Arrow with empty labels}

\setatomsep{2.0em}
\setcompoundsep{4.8em}
\schemedebug{true}
\schemestart
\chemfig{[6]A----B}
\arrow(.base east--.base west){->[][][-10mm]}[,2]
\chemfig{[6]A------B}
\schemestop

\section*{Arrow with subscheme in top label}
\setatomsep{2.0em}
\setcompoundsep{4.8em}
\schemedebug{true}
\schemestart
\chemfig{[6]A----B}
\arrow(.base east--.base west){->[
\subscheme{ \chemfig{C}\arrow \chemfig{D} }
][][-10mm]}[,2]
\chemfig{[6]A------B}
\schemestop

\end{document}

Result

Best Answer

As I understand the question, the problem is in the "label" of the arrow and how to do the "circle" with arrows. One way to do this is to play with the properties of chemmove and the arrows.

For example:

\schemestart
\chemfig{First molecule}
\arrow{->[
\chemname[24pt]{\chemfig{N@{st1}ADH}}{\scriptsize \parbox[c]{40pt}{\centering ammonium formate}}
\hspace{0.5cm}
\chemname[24pt]{\chemfig{N@{en1}AD}}{\chemfig{CO_2}}
\chemmove{\draw[->,shorten <=5pt, shorten >=5pt](st1) .. controls +(+50:8mm) and +(+130:8mm)..(en1);}
\chemmove{\draw[->,shorten <=5pt, shorten >=5pt](en1) .. controls +(-130:8mm) and +(-50:8mm)..(st1);}
\chemmove{\draw[->,shorten <=5pt, shorten >=5pt,transform canvas={yshift=-32pt}](st1) .. controls +(+50:8mm) and +(+130:8mm)..(en1);}
]}[,2.4]
\chemfig{second molecule}
\schemestop

Note that maybe further adjusting of the spaces is required.

Related Question