I want to draw a block diagram using blocks that have one input and two outputs. To position them nicely, I would like to define anchor points for these outputs.
how would I define something like this?
I defined the block like this
\tikzstyle{block} = [draw, rectangle,
minimum height=4em, minimum width=5em, align=center]
Then I wanted to place two blocks and connect the first output of the first block with the input of the second block, that the line if perfectly straight, something like this:
\draw
node at (0,0) [block] (A) {}
node at (6,1) [block] (B) {};
\draw [->] (A.output1) -- node {} (B.input);
Can I somehow define the points A.output1, A.output2 and B.input?
Thanks!


\tikzstyleis deprecated. Have a look at\tikzsetinstead. See https://tex.stackexchange.com/a/656146/36296 on how to transition to\tikzset– samcarter_is_at_topanswers.xyz Sep 19 '23 at 10:29