我需要绘制双酚 A 的化学结构,如下页所示:
http://commons.wikimedia.org/wiki/File:Bisphenol_A.svg
我还发现了这个演示如何做到这一点:
http://www.suedraum.de/latex/stammtisch/strukturformeln.pdf
请给我一些指导。
答案1
这是你想要的鱼,我用它钓到的 texdoc chemfig
。
\documentclass{article}
\usepackage{chemfig}
\begin{document}
\setatomsep{2em}
\setdoublesep{.3em}
\renewcommand*\printatom[1]{\ensuremath{\mathsf{#1}}}
\chemfig[line width=1pt]
{
HO-*6(-=-(-(-[::90]CH_3)(-[::-90]CH_3)-*6(-=-(-OH)=-=))=-=)
}
\end{document}
现在轮到你去拿手杖了。