Nodes connected incorrectly in TikZ
I want to achieve the following:
But the connecting of nodes isn't working properly. I get the following output:
How do I fix this and where am I going wrong.
MWE:
documentclass[tikz]{article}
usepackage{tikz}
tikzset{square/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick
}}
tikzset{circle/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick
}}
begin{document}
begin{tikzpicture}
draw[square] (-4,4)rectangle node (r1) {r1} (-3,5);
draw[circle] (-1,4.5) circle [radius=0.5cm] node (s1) {s1};
draw[->] (r1.west) -- (s1.east);
end{tikzpicture}
end{document}
Please note that I would like to stick to the approach of draw[->] (r1.west) -- (s1.east);
tikz-pgf
add a comment |
I want to achieve the following:
But the connecting of nodes isn't working properly. I get the following output:
How do I fix this and where am I going wrong.
MWE:
documentclass[tikz]{article}
usepackage{tikz}
tikzset{square/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick
}}
tikzset{circle/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick
}}
begin{document}
begin{tikzpicture}
draw[square] (-4,4)rectangle node (r1) {r1} (-3,5);
draw[circle] (-1,4.5) circle [radius=0.5cm] node (s1) {s1};
draw[->] (r1.west) -- (s1.east);
end{tikzpicture}
end{document}
Please note that I would like to stick to the approach of draw[->] (r1.west) -- (s1.east);
tikz-pgf
@JouleV thanks. In that case when to use(r1.west) -- (s1.east);
and when to use(r1)--(s1)
– subham soni
13 hours ago
add a comment |
I want to achieve the following:
But the connecting of nodes isn't working properly. I get the following output:
How do I fix this and where am I going wrong.
MWE:
documentclass[tikz]{article}
usepackage{tikz}
tikzset{square/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick
}}
tikzset{circle/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick
}}
begin{document}
begin{tikzpicture}
draw[square] (-4,4)rectangle node (r1) {r1} (-3,5);
draw[circle] (-1,4.5) circle [radius=0.5cm] node (s1) {s1};
draw[->] (r1.west) -- (s1.east);
end{tikzpicture}
end{document}
Please note that I would like to stick to the approach of draw[->] (r1.west) -- (s1.east);
tikz-pgf
I want to achieve the following:
But the connecting of nodes isn't working properly. I get the following output:
How do I fix this and where am I going wrong.
MWE:
documentclass[tikz]{article}
usepackage{tikz}
tikzset{square/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick
}}
tikzset{circle/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick
}}
begin{document}
begin{tikzpicture}
draw[square] (-4,4)rectangle node (r1) {r1} (-3,5);
draw[circle] (-1,4.5) circle [radius=0.5cm] node (s1) {s1};
draw[->] (r1.west) -- (s1.east);
end{tikzpicture}
end{document}
Please note that I would like to stick to the approach of draw[->] (r1.west) -- (s1.east);
tikz-pgf
tikz-pgf
asked 13 hours ago
subham sonisubham soni
4,03582981
4,03582981
@JouleV thanks. In that case when to use(r1.west) -- (s1.east);
and when to use(r1)--(s1)
– subham soni
13 hours ago
add a comment |
@JouleV thanks. In that case when to use(r1.west) -- (s1.east);
and when to use(r1)--(s1)
– subham soni
13 hours ago
@JouleV thanks. In that case when to use
(r1.west) -- (s1.east);
and when to use (r1)--(s1)
– subham soni
13 hours ago
@JouleV thanks. In that case when to use
(r1.west) -- (s1.east);
and when to use (r1)--(s1)
– subham soni
13 hours ago
add a comment |
1 Answer
1
active
oldest
votes
Correct picture
documentclass[tikz,margin=3mm]{standalone}
tikzset{squarenode/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick,
minimum size=1cm %%%% Take note of this!
},
circlenode/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick,
minimum size=1cm %%%% and this!
}}
begin{document}
begin{tikzpicture}
draw (-4,4.5) node[squarenode] (r1) {r1}; % Or node[squarenode] (r1) at (-4,4.5) {r1};
draw (-1,4.5) node[circlenode] (s1) {s1}; % Or node[circlenode] (s1) at (-1,4.5) {s1};
draw[->] (r1) -- (s1); % or (r1.east)--(s1.west);
end{tikzpicture}
end{document}
Some notes (important!)
circle
is a defined option, therefore you must not define a newcircle
. I changed it tocirclenode
.- You don't have to draw the circle and the square manually. You can use the shape in the node and
minimum size
. For more controlling, we haveminimum height
andminimum width
. - I don't recommend using many
tikzset{}
s.
tikz
is not an option ofarticle
. It is an option ofstandalone
. When you loadtikz
option already, you don't needusepackage{tikz}
.
Difference when you use (r1)--(s1)
and (r1.east)--(s1.west)
documentclass[tikz,margin=3mm]{standalone}
begin{document}
begin{tikzpicture}
node[draw] (a) at (0,0) {Some text};
node[draw] (b) at (5,3) {Hello world};
draw[thick] (0,0)--(5,3);
draw[red] (a)--(b);
draw[blue] (a.east)--(b.west);
end{tikzpicture}
end{document}
Look closely at the beginning point and the ending point of the red line and the blue line.
add a comment |
Your Answer
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "85"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: false,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: null,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477557%2fnodes-connected-incorrectly-in-tikz%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Correct picture
documentclass[tikz,margin=3mm]{standalone}
tikzset{squarenode/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick,
minimum size=1cm %%%% Take note of this!
},
circlenode/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick,
minimum size=1cm %%%% and this!
}}
begin{document}
begin{tikzpicture}
draw (-4,4.5) node[squarenode] (r1) {r1}; % Or node[squarenode] (r1) at (-4,4.5) {r1};
draw (-1,4.5) node[circlenode] (s1) {s1}; % Or node[circlenode] (s1) at (-1,4.5) {s1};
draw[->] (r1) -- (s1); % or (r1.east)--(s1.west);
end{tikzpicture}
end{document}
Some notes (important!)
circle
is a defined option, therefore you must not define a newcircle
. I changed it tocirclenode
.- You don't have to draw the circle and the square manually. You can use the shape in the node and
minimum size
. For more controlling, we haveminimum height
andminimum width
. - I don't recommend using many
tikzset{}
s.
tikz
is not an option ofarticle
. It is an option ofstandalone
. When you loadtikz
option already, you don't needusepackage{tikz}
.
Difference when you use (r1)--(s1)
and (r1.east)--(s1.west)
documentclass[tikz,margin=3mm]{standalone}
begin{document}
begin{tikzpicture}
node[draw] (a) at (0,0) {Some text};
node[draw] (b) at (5,3) {Hello world};
draw[thick] (0,0)--(5,3);
draw[red] (a)--(b);
draw[blue] (a.east)--(b.west);
end{tikzpicture}
end{document}
Look closely at the beginning point and the ending point of the red line and the blue line.
add a comment |
Correct picture
documentclass[tikz,margin=3mm]{standalone}
tikzset{squarenode/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick,
minimum size=1cm %%%% Take note of this!
},
circlenode/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick,
minimum size=1cm %%%% and this!
}}
begin{document}
begin{tikzpicture}
draw (-4,4.5) node[squarenode] (r1) {r1}; % Or node[squarenode] (r1) at (-4,4.5) {r1};
draw (-1,4.5) node[circlenode] (s1) {s1}; % Or node[circlenode] (s1) at (-1,4.5) {s1};
draw[->] (r1) -- (s1); % or (r1.east)--(s1.west);
end{tikzpicture}
end{document}
Some notes (important!)
circle
is a defined option, therefore you must not define a newcircle
. I changed it tocirclenode
.- You don't have to draw the circle and the square manually. You can use the shape in the node and
minimum size
. For more controlling, we haveminimum height
andminimum width
. - I don't recommend using many
tikzset{}
s.
tikz
is not an option ofarticle
. It is an option ofstandalone
. When you loadtikz
option already, you don't needusepackage{tikz}
.
Difference when you use (r1)--(s1)
and (r1.east)--(s1.west)
documentclass[tikz,margin=3mm]{standalone}
begin{document}
begin{tikzpicture}
node[draw] (a) at (0,0) {Some text};
node[draw] (b) at (5,3) {Hello world};
draw[thick] (0,0)--(5,3);
draw[red] (a)--(b);
draw[blue] (a.east)--(b.west);
end{tikzpicture}
end{document}
Look closely at the beginning point and the ending point of the red line and the blue line.
add a comment |
Correct picture
documentclass[tikz,margin=3mm]{standalone}
tikzset{squarenode/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick,
minimum size=1cm %%%% Take note of this!
},
circlenode/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick,
minimum size=1cm %%%% and this!
}}
begin{document}
begin{tikzpicture}
draw (-4,4.5) node[squarenode] (r1) {r1}; % Or node[squarenode] (r1) at (-4,4.5) {r1};
draw (-1,4.5) node[circlenode] (s1) {s1}; % Or node[circlenode] (s1) at (-1,4.5) {s1};
draw[->] (r1) -- (s1); % or (r1.east)--(s1.west);
end{tikzpicture}
end{document}
Some notes (important!)
circle
is a defined option, therefore you must not define a newcircle
. I changed it tocirclenode
.- You don't have to draw the circle and the square manually. You can use the shape in the node and
minimum size
. For more controlling, we haveminimum height
andminimum width
. - I don't recommend using many
tikzset{}
s.
tikz
is not an option ofarticle
. It is an option ofstandalone
. When you loadtikz
option already, you don't needusepackage{tikz}
.
Difference when you use (r1)--(s1)
and (r1.east)--(s1.west)
documentclass[tikz,margin=3mm]{standalone}
begin{document}
begin{tikzpicture}
node[draw] (a) at (0,0) {Some text};
node[draw] (b) at (5,3) {Hello world};
draw[thick] (0,0)--(5,3);
draw[red] (a)--(b);
draw[blue] (a.east)--(b.west);
end{tikzpicture}
end{document}
Look closely at the beginning point and the ending point of the red line and the blue line.
Correct picture
documentclass[tikz,margin=3mm]{standalone}
tikzset{squarenode/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick,
minimum size=1cm %%%% Take note of this!
},
circlenode/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick,
minimum size=1cm %%%% and this!
}}
begin{document}
begin{tikzpicture}
draw (-4,4.5) node[squarenode] (r1) {r1}; % Or node[squarenode] (r1) at (-4,4.5) {r1};
draw (-1,4.5) node[circlenode] (s1) {s1}; % Or node[circlenode] (s1) at (-1,4.5) {s1};
draw[->] (r1) -- (s1); % or (r1.east)--(s1.west);
end{tikzpicture}
end{document}
Some notes (important!)
circle
is a defined option, therefore you must not define a newcircle
. I changed it tocirclenode
.- You don't have to draw the circle and the square manually. You can use the shape in the node and
minimum size
. For more controlling, we haveminimum height
andminimum width
. - I don't recommend using many
tikzset{}
s.
tikz
is not an option ofarticle
. It is an option ofstandalone
. When you loadtikz
option already, you don't needusepackage{tikz}
.
Difference when you use (r1)--(s1)
and (r1.east)--(s1.west)
documentclass[tikz,margin=3mm]{standalone}
begin{document}
begin{tikzpicture}
node[draw] (a) at (0,0) {Some text};
node[draw] (b) at (5,3) {Hello world};
draw[thick] (0,0)--(5,3);
draw[red] (a)--(b);
draw[blue] (a.east)--(b.west);
end{tikzpicture}
end{document}
Look closely at the beginning point and the ending point of the red line and the blue line.
edited 11 hours ago
answered 13 hours ago
JouleVJouleV
4,6681938
4,6681938
add a comment |
add a comment |
Thanks for contributing an answer to TeX - LaTeX Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477557%2fnodes-connected-incorrectly-in-tikz%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
@JouleV thanks. In that case when to use
(r1.west) -- (s1.east);
and when to use(r1)--(s1)
– subham soni
13 hours ago