
Quiero lograr lo siguiente:
Pero la conexión de nodos no funciona correctamente. Obtengo el siguiente resultado:
¿Cómo soluciono esto y dónde me estoy equivocando?
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}
Tenga en cuenta que me gustaría atenerme al enfoque de\draw[->] (r1.west) -- (s1.east);
Respuesta1
imagen correcta
\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}
Algunas notas (¡importantes!)
circle
es una opción definida, por lo tanto no debes definir un nuevocircle
. Lo cambié acirclenode
.- No es necesario que dibujes el círculo y el cuadrado manualmente. Puedes usar la forma en el nodo y
minimum size
. Para un mayor control, tenemosminimum height
yminimum width
. - No recomiendo usar muchos
\tikzset{}
s. tikz
no es una opción dearticle
. Es una opción destandalone
. Cuando ya cargastikz
la opción, no necesitas\usepackage{tikz}
.
Diferencia cuando usas (r1)--(s1)
y(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}
Mire de cerca el punto inicial y el punto final de la línea roja y la línea azul.