Math & Science ⇒ Asterisk in chemical Structure
Asterisk in chemical Structure
Thanks
- Attachments
-
- Capture.PNG (1.54 KiB) Viewed 7429 times
Learn LaTeX easily with newest books:
The LaTeX Beginner's Guide: 2nd edition and perfect for students writing a thesis
The LaTeX Cookbook: 2nd edition full of practical examples for mathematics, physics, chemistry, and more
LaTeX Graphics with TikZ: the first book about TikZ for perfect drawings in your LaTeX thesis
Asterisk in chemical Structure
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}