答案1
根據您的需求,這對於軟體包chemformula
和一點 TikZ 來說是相當簡單的:
\documentclass{article}
\usepackage{chemformula}
\NewChemBond{quadruple}{
\foreach \i in {-.15em,-.05em,.05em,.15em}{
\draw[chembond]
([yshift=\i]chemformula-bond-start) -- ([yshift=\i]chemformula-bond-end) ;
}
}
\NewChemBond{quintuple}{
\foreach \i in {-.16em,-.08em,0em,.08em,.16em}{
\draw[chembond]
([yshift=\i]chemformula-bond-start) -- ([yshift=\i]chemformula-bond-end) ;
}
}
\NewChemBond{sextuple}{
\foreach \i in {-.2em,-.12em,-.04em,.04em,.12em,.2em}{
\draw[chembond]
([yshift=\i]chemformula-bond-start) -- ([yshift=\i]chemformula-bond-end) ;
}
}
\NewChemBond{banana}{
\draw[chembond]
(chemformula-bond-start)
parabola[bend pos=.5] bend +(0,.5ex)
(chemformula-bond-end) ;
}
\begin{document}
\ch{X\bond{quadruple}X}\par
\ch{X\bond{quintuple}X}\par
\ch{X\bond{sextuple}X}\par
\ch{X\bond{banana}X}
\end{document}
答案2
以下是使用 chemfig 繪製 n 鍵 (n>1) 的方法:
\documentclass{article}
\usepackage{chemfig}
\usetikzlibrary{decorations.markings}
\makeatletter
\tikzset{nbond/.style args={#1}{%
draw=none,%
decoration={%
markings,%
mark=at position 0 with {\coordinate (CFstart@) at (0,0);},
mark=at position 1 with {%
\foreach\CF@i in{0,1,...,\number\numexpr#1-1}{%
\pgfmathsetmacro\CF@nbondcoeff{\[email protected]*(#1-1)}%
\draw ([yshift=\CF@nbondcoeff\CF@double@sep]CFstart@)--(0,\CF@nbondcoeff\CF@double@sep);
}%
}
},
postaction={decorate}
}
}
\makeatother
\begin{document}
\chemfig{A-[1,,,,nbond=4]B-[:-30,,,,nbond=5]C-[6,,,,nbond=6]D}
\end{document}
答案3
我現在不知道四重鍵是否可以用 chemfig 製成,但彎曲的鍵沒有問題。
使用 tikz 庫“pathmorphing”和以下程式碼
\chemfig{A-[,3,,,decorate,decoration=snake]B}
你得到這個:
可以用節點製作其他形狀。例如嘗試這個程式碼
\chemfig{@{a}A-[,,,,draw=none]@{b}B}
\chemmove{\draw[-](a)..controls +(45:7mm) and +(225:7mm)..(b);}
得到以下內容:
解釋:
225:7mm
225 是角度,7mm 是鍵結幅度。我們的鍵以 225° 的角度進入 B,曲線在 y=-7mm 達到最小值。
演示程式碼:
\documentclass[a4paper,11pt]{scrartcl}
\usepackage[utf8]{inputenc}
\usepackage[ngerman]{babel}
\usepackage{chemfig}
\usepackage[T1]{fontenc}
\usepackage{chemfig}
\usetikzlibrary{decorations.pathmorphing}
\begin{document}
\schemestart
\chemfig{A-[,3,,,decorate,decoration=snake]B}
\schemestop
\par
\schemestart
\chemfig{@{a}A-[,,,,draw=none]@{b}B}
\chemmove{\draw[-](a)..controls +(45:7mm) and +(225:7mm)..(b);}
\schemestop
\end{document}
請確保運行編譯兩次以使彎曲的鍵出現!