I cannot to find solution of my problems.
I created short code:
Code: Select all
\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{shapes, snakes, arrows}
\tikzset{
sum/.style={circle,draw=black,fill=white,thick, inner sep=0pt,minimum size=6mm},
gain/.style={regular polygon,regular polygon sides=3, draw = black, fill=white,thick, minimum size=6mm},
none/.style={draw=none,fill=none}}
\begin{document}
\begin{tikzpicture}[thick, >=stealth]
\node(w) at (0,0) [gain, rotate = -90] {};
\node(sum0) at ( 2,0) [sum] {$+$};
\draw[->] (w) -- (sum0) ;
\draw[*->] (1,0) -- (1,-1) ;
\end{tikzpicture}
\end{document}
But line from triangle node likes bad. Also I want to create branch from my connection like this
Code: Select all
\draw[*->] (1,0) -- (1,-1) ;
Could you tell me how can I solve these problems?
Thanks!