I would like to draw a compound with a hydrogen bond with the chemfig package. Usually, this is drawn with a dotted line. However, this seems not to be a standard bond for this package (i.e. it is not in the table p. 8 in the manual). Is there a simple way to do it?
MWE:
\documentclass{article}
\usepackage{chemfig}
\begin{document}
\begin{center}
\chemfig{A-H\cdots B(-[:60]C)-[:-60]D}
\end{center}
Here I use \texttt{\textbackslash cdots} ($ \cdots $) where I would like to have a bond command.
\end{document}
Result:


\chemfig{A-H-[:0,,,,dotted]B(-[:60]C)-[:-60]D}or\chemfig{A-H-[:0,,,,thick,dotted]B(-[:60]C)-[:-60]D}a try. – leandriis Jan 04 '21 at 18:26