
我希望下面的原子符號顏色和樣式與封閉節點樣式相同;我該怎麼做?有沒有辦法參考 的線條樣式\tikzlastnode
?
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning, calc}
\begin{document}
\title{science symbol}
\begin{tikzpicture}[>=latex,
font=\sffamily,
atom/.style = {circle, minimum size=#1,
append after command={%
\pgfextra{
\foreach \ang in {0,120,240}
\draw[rotate around={\ang:(0,0)}] (\tikzlastnode.center) ellipse (0.45*#1 and 0.15*#1);
\fill (\tikzlastnode.center) circle (0.05*#1);
}
}
}
]
\node[draw, atom=10mm] (C1) at (0,0){};
\node[draw, very thin, red, atom=10mm] (C2) at (2cm,0){};
\node[draw, thick, green, atom=10mm] (C3) at (2cm,2cm){};
\draw[->] (C1) -- (C2);
\draw[->] (C1) -- (C3);
\end{tikzpicture}
\end{document}
答案1
我再次以自己的方式解決了這個問題,並找到了一種使用\pgfdeclareshape
而不是的替代方法append after command
。 (為什麼我做這種事情總是感覺像是一場痛苦的勝利???)我使用的其他參考問題是
但它基本上只是如何使用形狀\pgfdeclareshape
來工作circle
,請參閱https://svn.ssec.wisc.edu/repos/geoffc/LaTeX/beamerposter_UW-SSEC/pgfmoduleshapes.code.tex取得原始碼。
\documentclass[border=3mm]{standalone}
\usepackage{tikz}
\usetikzlibrary{positioning, calc}
\begin{document}
\title{science symbol}
\pgfdeclareshape{atomshape}{%
\inheritsavedanchors[from=circle]%
\inheritanchorborder[from=circle]%
\inheritanchor[from=circle]{center}%
%
\backgroundpath{%
\pgfpathcircle{\pgfpointorigin}{0.1*\radius}
\pgfusepath{fill}
\pgfpathcircle{\pgfpointorigin}{\radius}%
\foreach\ang in {0,120,240}{
\pgftransformrotate{\ang}
\pgfpathellipse{\pgfpointorigin}
{\pgfpoint{0.9*\radius}{0cm}}
{\pgfpoint{0cm}{0.3*\radius}}
}
}%
}
\begin{tikzpicture}[>=latex,
font=\sffamily,
atom/.style = {atomshape, minimum size=#1}
]
\node[draw, atom=10mm] (C1) at (0,0){};
\node[draw, very thin, red, atom=10mm] (C2) at (2cm,0){};
\node[draw, thick, green, atom=10mm] (C3) at (2cm,2cm){};
\draw[->] (C1) -- (C2);
\draw[->] (C1) -- (C3);
\end{tikzpicture}
\end{document}