![Aumentar localmente o tamanho de uma seta](https://rvso.com/image/476258/Aumentar%20localmente%20o%20tamanho%20de%20uma%20seta.png)
Quero mostrar uma sequência de reações (para químicos, reação de Cannizzaro) na mesma linha. No meu caso, tenho que escrever uma molécula longa (Ph-CH=O) na seta mas estou com um problema no meu código: ou tenho o tamanho certo mas a escrita na seta não funciona (com o comando \arrow[,2,](start.mid east--.mid west){->[\chemfig{Ph-CH=O}]}
) ou tenho a escrita na seta, mas não no tamanho certo (com o comando \arrow(start.mid east--.mid west){->[\chemfig{Ph-CH=O}]}
).
Como posso aumentar o tamanho da seta mantendo o texto acima dela?
\documentclass[border=1mm]{standalone}
\usepackage{graphicx} % Required for inserting images
\usepackage{chemfig}
\begin{document}
\schemestart
\chemfig{[:-30]*6(=-=(-@{atoc}C([6]=[@{db}]@{atoo1}O)-H)-=-)}
\arrow(start.mid east--.mid west){->[\chemfig{@{atoo2}\chemabove{O}{\scriptstyle\ominus}}H]}
\chemfig{[:-30]*6(=-=(-C([6]-[@{sb1}]@{atoo1}\chembelow{O}{\scriptstyle\ominus})([2]-OH)-[@{sb2}]H)-=-)}
\arrow[,2,](start.mid east--.mid west){->[\chemfig{Ph-CH=O}]}
\chemfig{[:-30]*6(=-=(-C([1]-@{atoo2}O-[@{sb}0]@{atoh}H)([6]=O))-=-)}
\arrow{0}
\chemfig{[:-30]*6((-C(-[5]H)(-[7]H)-[2]@{atoo1}\chemabove{O}{\scriptstyle\ominus})-=-=-=)}
\chemmove[-stealth,shorten >=2pt,dash pattern=on 1pt off 1pt,thin]{
\draw[shorten <=7pt](atoo1.90) ..controls +(+90:8mm) and +(up:10mm)..(atoh);
\draw[shorten <=2pt](sb) ..controls +(up:5mm) and +(up:5mm)..(atoo2);}
\schemestop
\end{document}
Responder1
por isso?
você também pode encurtar as ligações da molécula acima da seta
\documentclass[border=1mm]{standalone}
\usepackage{graphicx} % Required for inserting images
\usepackage{chemfig}
\begin{document}
\schemestart
\chemfig{[:-30]*6(=-=(-@{atoc}C([6]=[@{db}]@{atoo1}O)-H)-=-)}
\arrow(start.mid east--.mid west){->[\chemfig{@{atoo2}\chemabove{O}{\scriptstyle\ominus}}H]}
\chemfig{[:-30]*6(=-=(-C([6]-[@{sb1}]@{atoo1}\chembelow{O}{\scriptstyle\ominus})([2]-OH)-[@{sb2}]H)-=-)}
\arrow{->[\chemfig{Ph-[,.7]CH=[0,.7]O}]}[0,2]
\chemfig{[:-30]*6(=-=(-C([1]-@{atoo2}O-[@{sb}0]@{atoh}H)([6]=O))-=-)}
\arrow{0}
\chemfig{[:-30]*6((-C(-[5]H)(-[7]H)-[2]@{atoo1}\chemabove{O}{\scriptstyle\ominus})-=-=-=)}
\chemmove[-stealth,shorten >=2pt,dash pattern=on 1pt off 1pt,thin]{
\draw[shorten <=7pt](atoo1.90) ..controls +(+90:8mm) and +(up:10mm)..(atoh);
\draw[shorten <=2pt](sb) ..controls +(up:5mm) and +(up:5mm)..(atoo2);}
\schemestop
\end{document}