
내 질문은 제목에 있습니다. 다음과 같이 썬크로스를 가리키는 화살표를 만들고 싶습니다.이것? 나는 혼자서 화살을 만들 수 있어요. 썬크로스 만드는 것을 도와주실 수 있나요?
답변1
신호 변조기의 승수와 비슷하게 내부에 십자 기호가 있는 원 노드를 그립니다.
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\begin{document}
\begin{tikzpicture}[cross/.style={path picture={
\draw[black,line width=1pt]
(path picture bounding box.south east) -- (path picture bounding
box.north west) (path picture bounding box.south west) -- (path picture
bounding box.north east);
}}]
\node [draw,circle,cross,minimum width=1 cm,line width=1pt](B) at (3,0){};
\draw[<-,line width=1pt,stealth-] (B.south
west)to[out=225,in=75,looseness=1.3]($(B.south)+(-3,-6)$);
\end{tikzpicture}
\end{document}