有机分子中的正电荷形式

有机分子中的正电荷形式

我想更改命令的格式\oplus,但无法更改样式。想要的样式: “\oplus” 的不同样式

稍微解释一下,我不希望 \oplus 的圆圈接触 + 号。

感谢帮助

答案1

这取决于实际用例,但也许只是一个+节点circle

\documentclass[border=20pt]{standalone}
\usepackage{chemfig}

\begin{document}

\chemfig{[:30]-@{x}(-[:90])-[:330]}
\chemmove{
    \node[shift={(10pt,5pt)}, circle, draw, inner sep=0pt] (plus) at (x) {+};
    \node[anchor=west] at (plus.east) {$\neq\oplus$};
}

\end{document}

在此处输入图片描述

答案2

\documentclass[border=5mm]{standalone}
\usepackage{chemfig}
\begin{document}
    \chemfig{-[:30]\charge{30:8pt[draw, circle]=$+$}{}(-[2])-[:-30]}
    \chemfig{-[:30]\charge{
        30:8pt[draw, circle]=$+$,
        30:8pt[anchor=west]=\phantom{+}$\neq\oplus$}{}(-[2])-[:-30]}
\end{document}

在此处输入图片描述

相关内容