chemfig 中芳香族基团的一般二价性

chemfig 中芳香族基团的一般二价性

我正在尝试用\chemfig(附图)绘制一般的二价萘。但我不知道如何制作两个悬空键。

我希望得到什么

我的代码只允许我绘制萘,只要我添加一个键,它就会将其附加到萘上(我不想要)。有什么建议吗?

这就是我所在的地方\chemfig{[:0]*6(=-*6(-=-=-)=-=-)}(仅吸收萘)。

这是可编译的源代码。

\documentclass{article}
\usepackage[utf8]{inputenc}
\usepackage{chemfig}
\usepackage[version=4]{mhchem}

\title{naphthalene}
\date{June 2021}

\begin{document}

%Regular naphthalene
\chemfig{[:0]*6(=-*6(-=-=-)=-=-)}

%Bad way around because (1) the bond ends up at atom of aromatic group instead of in the middle of the bond. (2) on the other side it's only on the atom, does not go to the middle of the aromatic group
\chemfig{-([:0]*6(=-*6(-=-(-)=-)=-=-))-}


\end{document}

答案1

在本手册的“12.6 环中心”一节(当前位于第 20 页)的帮助下chemfig

在此处输入图片描述

\documentclass{article}
\usepackage{chemfig}
\begin{document}

\chemfig{[:0]*6(=-*6(-=-=-)=-=-)}
\chemmove{%
\node[at=(cyclecenter1)](){}node [at=(cyclecenter1),shift=(180:1.75cm)](end){};
\draw[-,shorten <=.5cm](cyclecenter1)--(end);
\node[at=(cyclecenter2)](){}node [at=(cyclecenter2),shift=(0:1.75cm)](end){};
\draw[-,shorten <=.45cm](cyclecenter2)--(end);}


\end{document}

相关内容