如何在 chemfig 中将默认值键长更改为绝对值?

如何在 chemfig 中将默认值键长更改为绝对值?

Chemfig 允许您在键的第二个参数中设置键长,例如-[,2](默认值的 2 倍)。如何将键长的值设置为绝对值(例如 5mm),而不是默认值的倍数?

答案1

你可以:

\documentclass{article}
\usepackage{chemfig}
\makeatletter
\newcommand*\forcelen[1]{#1/\CF@atom@sep}
\makeatother
\begin{document}
These bonds are exactly 5mm long: \chemfig{-[,\forcelen{5mm}]-[:60,\forcelen{5mm}]}
\end{document}

如果两个原子都不为空,则\forcelen不是键长。它是原子中心之间的距离。

相关内容