I am trying to make a reaction scheme using chemfig, using lower case letters for the compound. This is causing the package to react differently, resulting in inability to assign departure and arrival 'atoms'.
For example:
Code: Select all
\documentclass{article}
\usepackage{chemfig}
\begin{document}
\schemestart
\chemfig{abcdefgh-[:30]ijk-[:-30]lm}\+\chemfig{nop}
\schemestop
\end{document}
Specifying the departure atom works only if the 'compound' is given by capital letters. Using:
Code: Select all
\chemfig{ABCDEFGH-[:30,,8]ijk-[:-30]lm}\+\chemfig{nop}
But using this with the lower case 'compound' name results in error, with the 'atom' numbers (8 in this case) not being recognized.
I tried using the <tikz code> parameter in bond option to specify the anchor (I don't know if this is supposed to work, but I tried anyway):
Code: Select all
\chemfig{abcdefgh-[:30,,,,.east--.west]ijk-[:-30]lm}\+\chemfig{nop}
How can I get the bond to 'depart' correctly?