I've just started using the chemfig package to create structural formulas in chemistry. Can someone show me how to add an asterisk (*) above the single carbon bond?
Thanks
Math & Science ⇒ Asterisk in chemical Structure
Asterisk in chemical Structure
- Attachments
-
- Capture.PNG (1.54 KiB) Viewed 7172 times
NEW: TikZ book now 40% off at Amazon.com for a short time.

Asterisk in chemical Structure
Here are two quick ideas:
Regards
Code: Select all
\documentclass{article}
\usepackage{chemfig}
\begin{document}
First idea (note: star-code added \emph{after} the second atom of the bond):
\chemfig{C-C(-[::180,.5]-[::-90,.1,,,draw=none]{{*}})}
\definesubmol\starbond{-[::180,.5]-[::-90,.1,,,draw=none]{{*}}}
\chemfig{C-[:-40]C(!\starbond)} \chemfig{C-[2]C(!\starbond)}
\bigskip
Second idea (needs further adjusting):
\chemfig{C-[@{s1}]C}
\chemfig{C-[@{s2}:-40]C} \chemfig{C-[@{s3}2]C}
\chemmove{
\node at (s1.90) {*} ;
\node at (s2.45) {*} ;
\node at (s3.180) {*} ;
}
\end{document}
site moderator & package author
Re: Asterisk in chemical Structure
Thanks, helps a lot!