Petri-Net: Displace a node by x units after using relative positioning in TikZMove a tikz node somewhat below...

Did Amazon pay $0 in taxes last year?

Can an earth elemental drown/bury its opponent underground using earth glide?

Rationale to prefer local variables over instance variables?

Ahoy, Ye Traveler!

How does insurance birth control work?

Deal the cards to the players

Correct physics behind the colors on CD (compact disc)?

Is divide-by-zero a security vulnerability?

Can a Trickery Domain cleric cast a spell through the Invoke Duplicity clone while inside a Forcecage?

School performs periodic password audits. Is my password compromised?

Called into a meeting and told we are being made redundant (laid off) and "not to share outside". Can I tell my partner?

Is there a way to find out the age of climbing ropes?

How can I handle a player who pre-plans arguments about my rulings on RAW?

PTIJ: Is all laundering forbidden during the 9 days?

Giving a talk in my old university, how prominently should I tell students my salary?

Are small insurances worth it

How to disable or uninstall iTunes under High Sierra without disabling SIP

Why are special aircraft used for the carriers in the United States Navy?

How can I be pwned if I'm not registered on the compromised site?

Is there a full canon version of Tyrion's jackass/honeycomb joke?

Can a space-faring robot still function over a billion years?

Wardrobe above a wall with fuse boxes

Being asked to review a paper in conference one has submitted to

Is every open circuit a capacitor?



Petri-Net: Displace a node by x units after using relative positioning in TikZ


Move a tikz node somewhat below in relative positioningHow to define the default vertical distance between nodes?Numerical conditional within tikz keys?Input/Output Nodes - Specification and Description LanguageTikZ: Drawing an arc from an intersection to an intersectionGetting the proper shading within a circle - a bit of litographyRelative transparency in TikZ?Line up nested tikz enviroments or how to get rid of themTikZ: Differences in relative positioningsuccessive relative positioning tikz nodeWeird tikz text/inner sep positioning behaviour













1















After using relative positioning in TikZ, I wish to displace the note by x units on the right to achieve this.



enter image description here



I found this answer Move a tikz node somewhat below in relative positioning helpful. But any combination of x and y in the node is not helping here.



Is there an easy way to do this.



I get the below result:



enter image description here



Code:



documentclass{article}
usepackage{tikz}
usetikzlibrary{positioning}
usetikzlibrary{arrows}
usetikzlibrary{backgrounds}
usetikzlibrary{fit}
usetikzlibrary{decorations.pathmorphing}

tikzset{squarenode/.style = {
shape = rectangle,
fill = gray!50,
draw = black,
thick,
minimum height = 1cm,
minimum width = 1cm
}}

tikzset{circlenode/.style = {
shape = circle,
fill = blue!20,
draw = blue,
thick,
minimum size = 1cm
}}

tikzset{help lines/.style=very thin}
tikzset{My Grid/.style={help lines,color=blue!50}}

begin{document}
begin{tikzpicture}
[>=stealth']
%draw[My Grid] (-5,-5) grid (15,15);
node (r1) at (-4,4) [squarenode] {r1};
node[right=4cm of r1] (r2) [squarenode] {r2};
node[below=3cm of r1] (r3) [squarenode] {r3};
node[right=4cm of r3] (r4) [squarenode] {r4};
node[right=1.5cm of r1] (s2) [circlenode] {s2};
node[above=1cm of s2] (s1) [circlenode] {}; %s1
node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
node[above=1ex of s3,red] {$s leq 3$};
node[right=1.5cm of r3] (s4) [circlenode] {s4};
node[below=1cm of s4] (s5) [circlenode] {}; %s5
draw[fill=black] (s1.center) circle [radius=0.1cm];
draw[fill=black] (s5.center) circle [radius=0.1cm];
draw[->] (r1) -- (s2);
draw[->] (s2) -- (r2);
draw[->] (r3) -- (s4);
draw[->] (s4) -- (r4);
draw[->] (s1) to [out=180,in=90] (r1);
draw[->] (r1) to [out=-90,in=180] (s3);
draw[->] (s3) to [out=0,in=-90] (r2);
draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
draw[->] (r3) to [out=90,in=180] (s3);
draw[->] (s3) to [out=0,in=90] (r4);
draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
draw[->] (s5) to [bend left=45] (r3);
begin{scope}[on background layer]
node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
end{scope}

begin{scope}[xshift=10cm]
node (r1) at (-4,4) [squarenode] {r1};
node[right=4cm of r1] (r2) [squarenode] {r2};
node[below=3cm of r1] (r3) [squarenode] {r3};
node[right=4cm of r3] (r4) [squarenode] {r4};
node[right=1.5cm of r1] (s2) [circlenode] {s2};
node[above=1cm of s2] (s1) [circlenode] {}; %s1
node[below left=1.8cm of s2,] (s3) [circlenode] {s3}; %s3
node[right=1.5cm of r3] (s4) [circlenode] {s4};
node[below=1cm of s4] (s5) [circlenode] {}; %s5
draw[fill=black] (s1.center) circle [radius=0.1cm];
draw[fill=black] (s5.center) circle [radius=0.1cm];
draw[->] (r1) -- (s2);
draw[->] (s2) -- (r2);
draw[->] (r3) -- (s4);
draw[->] (s4) -- (r4);
draw[->] (s1) to [out=180,in=90] (r1);
draw[->] (r1) to [out=-90,in=180] (s3);
draw[->] (s3) to [out=0,in=-90] (r2);
draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
draw[->] (r3) to [out=90,in=180] (s3);
draw[->] (s3) to [out=0,in=90] (r4);
draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
draw[->] (s5) to [bend left=45] (r3);
begin{scope}[on background layer]
node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
end{scope}
end{scope}

draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

end{tikzpicture}
end{document}









share|improve this question





























    1















    After using relative positioning in TikZ, I wish to displace the note by x units on the right to achieve this.



    enter image description here



    I found this answer Move a tikz node somewhat below in relative positioning helpful. But any combination of x and y in the node is not helping here.



    Is there an easy way to do this.



    I get the below result:



    enter image description here



    Code:



    documentclass{article}
    usepackage{tikz}
    usetikzlibrary{positioning}
    usetikzlibrary{arrows}
    usetikzlibrary{backgrounds}
    usetikzlibrary{fit}
    usetikzlibrary{decorations.pathmorphing}

    tikzset{squarenode/.style = {
    shape = rectangle,
    fill = gray!50,
    draw = black,
    thick,
    minimum height = 1cm,
    minimum width = 1cm
    }}

    tikzset{circlenode/.style = {
    shape = circle,
    fill = blue!20,
    draw = blue,
    thick,
    minimum size = 1cm
    }}

    tikzset{help lines/.style=very thin}
    tikzset{My Grid/.style={help lines,color=blue!50}}

    begin{document}
    begin{tikzpicture}
    [>=stealth']
    %draw[My Grid] (-5,-5) grid (15,15);
    node (r1) at (-4,4) [squarenode] {r1};
    node[right=4cm of r1] (r2) [squarenode] {r2};
    node[below=3cm of r1] (r3) [squarenode] {r3};
    node[right=4cm of r3] (r4) [squarenode] {r4};
    node[right=1.5cm of r1] (s2) [circlenode] {s2};
    node[above=1cm of s2] (s1) [circlenode] {}; %s1
    node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
    node[above=1ex of s3,red] {$s leq 3$};
    node[right=1.5cm of r3] (s4) [circlenode] {s4};
    node[below=1cm of s4] (s5) [circlenode] {}; %s5
    draw[fill=black] (s1.center) circle [radius=0.1cm];
    draw[fill=black] (s5.center) circle [radius=0.1cm];
    draw[->] (r1) -- (s2);
    draw[->] (s2) -- (r2);
    draw[->] (r3) -- (s4);
    draw[->] (s4) -- (r4);
    draw[->] (s1) to [out=180,in=90] (r1);
    draw[->] (r1) to [out=-90,in=180] (s3);
    draw[->] (s3) to [out=0,in=-90] (r2);
    draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
    draw[->] (r3) to [out=90,in=180] (s3);
    draw[->] (s3) to [out=0,in=90] (r4);
    draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
    draw[->] (s5) to [bend left=45] (r3);
    begin{scope}[on background layer]
    node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
    end{scope}

    begin{scope}[xshift=10cm]
    node (r1) at (-4,4) [squarenode] {r1};
    node[right=4cm of r1] (r2) [squarenode] {r2};
    node[below=3cm of r1] (r3) [squarenode] {r3};
    node[right=4cm of r3] (r4) [squarenode] {r4};
    node[right=1.5cm of r1] (s2) [circlenode] {s2};
    node[above=1cm of s2] (s1) [circlenode] {}; %s1
    node[below left=1.8cm of s2,] (s3) [circlenode] {s3}; %s3
    node[right=1.5cm of r3] (s4) [circlenode] {s4};
    node[below=1cm of s4] (s5) [circlenode] {}; %s5
    draw[fill=black] (s1.center) circle [radius=0.1cm];
    draw[fill=black] (s5.center) circle [radius=0.1cm];
    draw[->] (r1) -- (s2);
    draw[->] (s2) -- (r2);
    draw[->] (r3) -- (s4);
    draw[->] (s4) -- (r4);
    draw[->] (s1) to [out=180,in=90] (r1);
    draw[->] (r1) to [out=-90,in=180] (s3);
    draw[->] (s3) to [out=0,in=-90] (r2);
    draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
    draw[->] (r3) to [out=90,in=180] (s3);
    draw[->] (s3) to [out=0,in=90] (r4);
    draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
    draw[->] (s5) to [bend left=45] (r3);
    begin{scope}[on background layer]
    node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
    end{scope}
    end{scope}

    draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

    end{tikzpicture}
    end{document}









    share|improve this question



























      1












      1








      1








      After using relative positioning in TikZ, I wish to displace the note by x units on the right to achieve this.



      enter image description here



      I found this answer Move a tikz node somewhat below in relative positioning helpful. But any combination of x and y in the node is not helping here.



      Is there an easy way to do this.



      I get the below result:



      enter image description here



      Code:



      documentclass{article}
      usepackage{tikz}
      usetikzlibrary{positioning}
      usetikzlibrary{arrows}
      usetikzlibrary{backgrounds}
      usetikzlibrary{fit}
      usetikzlibrary{decorations.pathmorphing}

      tikzset{squarenode/.style = {
      shape = rectangle,
      fill = gray!50,
      draw = black,
      thick,
      minimum height = 1cm,
      minimum width = 1cm
      }}

      tikzset{circlenode/.style = {
      shape = circle,
      fill = blue!20,
      draw = blue,
      thick,
      minimum size = 1cm
      }}

      tikzset{help lines/.style=very thin}
      tikzset{My Grid/.style={help lines,color=blue!50}}

      begin{document}
      begin{tikzpicture}
      [>=stealth']
      %draw[My Grid] (-5,-5) grid (15,15);
      node (r1) at (-4,4) [squarenode] {r1};
      node[right=4cm of r1] (r2) [squarenode] {r2};
      node[below=3cm of r1] (r3) [squarenode] {r3};
      node[right=4cm of r3] (r4) [squarenode] {r4};
      node[right=1.5cm of r1] (s2) [circlenode] {s2};
      node[above=1cm of s2] (s1) [circlenode] {}; %s1
      node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
      node[above=1ex of s3,red] {$s leq 3$};
      node[right=1.5cm of r3] (s4) [circlenode] {s4};
      node[below=1cm of s4] (s5) [circlenode] {}; %s5
      draw[fill=black] (s1.center) circle [radius=0.1cm];
      draw[fill=black] (s5.center) circle [radius=0.1cm];
      draw[->] (r1) -- (s2);
      draw[->] (s2) -- (r2);
      draw[->] (r3) -- (s4);
      draw[->] (s4) -- (r4);
      draw[->] (s1) to [out=180,in=90] (r1);
      draw[->] (r1) to [out=-90,in=180] (s3);
      draw[->] (s3) to [out=0,in=-90] (r2);
      draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
      draw[->] (r3) to [out=90,in=180] (s3);
      draw[->] (s3) to [out=0,in=90] (r4);
      draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
      draw[->] (s5) to [bend left=45] (r3);
      begin{scope}[on background layer]
      node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
      end{scope}

      begin{scope}[xshift=10cm]
      node (r1) at (-4,4) [squarenode] {r1};
      node[right=4cm of r1] (r2) [squarenode] {r2};
      node[below=3cm of r1] (r3) [squarenode] {r3};
      node[right=4cm of r3] (r4) [squarenode] {r4};
      node[right=1.5cm of r1] (s2) [circlenode] {s2};
      node[above=1cm of s2] (s1) [circlenode] {}; %s1
      node[below left=1.8cm of s2,] (s3) [circlenode] {s3}; %s3
      node[right=1.5cm of r3] (s4) [circlenode] {s4};
      node[below=1cm of s4] (s5) [circlenode] {}; %s5
      draw[fill=black] (s1.center) circle [radius=0.1cm];
      draw[fill=black] (s5.center) circle [radius=0.1cm];
      draw[->] (r1) -- (s2);
      draw[->] (s2) -- (r2);
      draw[->] (r3) -- (s4);
      draw[->] (s4) -- (r4);
      draw[->] (s1) to [out=180,in=90] (r1);
      draw[->] (r1) to [out=-90,in=180] (s3);
      draw[->] (s3) to [out=0,in=-90] (r2);
      draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
      draw[->] (r3) to [out=90,in=180] (s3);
      draw[->] (s3) to [out=0,in=90] (r4);
      draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
      draw[->] (s5) to [bend left=45] (r3);
      begin{scope}[on background layer]
      node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
      end{scope}
      end{scope}

      draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

      end{tikzpicture}
      end{document}









      share|improve this question
















      After using relative positioning in TikZ, I wish to displace the note by x units on the right to achieve this.



      enter image description here



      I found this answer Move a tikz node somewhat below in relative positioning helpful. But any combination of x and y in the node is not helping here.



      Is there an easy way to do this.



      I get the below result:



      enter image description here



      Code:



      documentclass{article}
      usepackage{tikz}
      usetikzlibrary{positioning}
      usetikzlibrary{arrows}
      usetikzlibrary{backgrounds}
      usetikzlibrary{fit}
      usetikzlibrary{decorations.pathmorphing}

      tikzset{squarenode/.style = {
      shape = rectangle,
      fill = gray!50,
      draw = black,
      thick,
      minimum height = 1cm,
      minimum width = 1cm
      }}

      tikzset{circlenode/.style = {
      shape = circle,
      fill = blue!20,
      draw = blue,
      thick,
      minimum size = 1cm
      }}

      tikzset{help lines/.style=very thin}
      tikzset{My Grid/.style={help lines,color=blue!50}}

      begin{document}
      begin{tikzpicture}
      [>=stealth']
      %draw[My Grid] (-5,-5) grid (15,15);
      node (r1) at (-4,4) [squarenode] {r1};
      node[right=4cm of r1] (r2) [squarenode] {r2};
      node[below=3cm of r1] (r3) [squarenode] {r3};
      node[right=4cm of r3] (r4) [squarenode] {r4};
      node[right=1.5cm of r1] (s2) [circlenode] {s2};
      node[above=1cm of s2] (s1) [circlenode] {}; %s1
      node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
      node[above=1ex of s3,red] {$s leq 3$};
      node[right=1.5cm of r3] (s4) [circlenode] {s4};
      node[below=1cm of s4] (s5) [circlenode] {}; %s5
      draw[fill=black] (s1.center) circle [radius=0.1cm];
      draw[fill=black] (s5.center) circle [radius=0.1cm];
      draw[->] (r1) -- (s2);
      draw[->] (s2) -- (r2);
      draw[->] (r3) -- (s4);
      draw[->] (s4) -- (r4);
      draw[->] (s1) to [out=180,in=90] (r1);
      draw[->] (r1) to [out=-90,in=180] (s3);
      draw[->] (s3) to [out=0,in=-90] (r2);
      draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
      draw[->] (r3) to [out=90,in=180] (s3);
      draw[->] (s3) to [out=0,in=90] (r4);
      draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
      draw[->] (s5) to [bend left=45] (r3);
      begin{scope}[on background layer]
      node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
      end{scope}

      begin{scope}[xshift=10cm]
      node (r1) at (-4,4) [squarenode] {r1};
      node[right=4cm of r1] (r2) [squarenode] {r2};
      node[below=3cm of r1] (r3) [squarenode] {r3};
      node[right=4cm of r3] (r4) [squarenode] {r4};
      node[right=1.5cm of r1] (s2) [circlenode] {s2};
      node[above=1cm of s2] (s1) [circlenode] {}; %s1
      node[below left=1.8cm of s2,] (s3) [circlenode] {s3}; %s3
      node[right=1.5cm of r3] (s4) [circlenode] {s4};
      node[below=1cm of s4] (s5) [circlenode] {}; %s5
      draw[fill=black] (s1.center) circle [radius=0.1cm];
      draw[fill=black] (s5.center) circle [radius=0.1cm];
      draw[->] (r1) -- (s2);
      draw[->] (s2) -- (r2);
      draw[->] (r3) -- (s4);
      draw[->] (s4) -- (r4);
      draw[->] (s1) to [out=180,in=90] (r1);
      draw[->] (r1) to [out=-90,in=180] (s3);
      draw[->] (s3) to [out=0,in=-90] (r2);
      draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
      draw[->] (r3) to [out=90,in=180] (s3);
      draw[->] (s3) to [out=0,in=90] (r4);
      draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
      draw[->] (s5) to [bend left=45] (r3);
      begin{scope}[on background layer]
      node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
      end{scope}
      end{scope}

      draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

      end{tikzpicture}
      end{document}






      tikz-pgf positioning






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited yesterday









      AndréC

      9,90311547




      9,90311547










      asked yesterday









      subham sonisubham soni

      4,07682981




      4,07682981






















          1 Answer
          1






          active

          oldest

          votes


















          1














          Like this?



          The positioning library allows you to place nodes relative to others. When writing:



          node[below left=1.2cm and 0cm of s2,] 


          the two dimensions each act on the position key :




          • the first dimension (1.2 cm) acts only on the first positioning (here below)

          • the second dimension (0 cm) only affects the second positioning (here left).




          documentclass{article}
          usepackage{tikz}
          usetikzlibrary{positioning}
          usetikzlibrary{arrows}
          usetikzlibrary{backgrounds}
          usetikzlibrary{fit}
          usetikzlibrary{decorations.pathmorphing}

          tikzset{squarenode/.style = {
          shape = rectangle,
          fill = gray!50,
          draw = black,
          thick,
          minimum height = 1cm,
          minimum width = 1cm
          }}

          tikzset{circlenode/.style = {
          shape = circle,
          fill = blue!20,
          draw = blue,
          thick,
          minimum size = 1cm
          }}

          tikzset{help lines/.style=very thin}
          tikzset{My Grid/.style={help lines,color=blue!50}}

          begin{document}
          begin{tikzpicture}
          [>=stealth']
          %draw[My Grid] (-5,-5) grid (15,15);
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
          node[above=1ex of s3,red] {$s leq 3$};
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
          end{scope}

          begin{scope}[xshift=10cm]
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below left=1.2cm and 0cm of s2,] (s3) [circlenode] {s3bis}; %s3
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
          end{scope}
          end{scope}

          draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

          end{tikzpicture}
          end{document}


          screenshot






          share|improve this answer


























          • Yes. Can you please explain the solution .

            – subham soni
            yesterday






          • 1





            It is done ! Is that clearer ? Is that better?

            – AndréC
            yesterday













          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
          });


          }
          });














          draft saved

          draft discarded


















          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477885%2fpetri-net-displace-a-node-by-x-units-after-using-relative-positioning-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









          1














          Like this?



          The positioning library allows you to place nodes relative to others. When writing:



          node[below left=1.2cm and 0cm of s2,] 


          the two dimensions each act on the position key :




          • the first dimension (1.2 cm) acts only on the first positioning (here below)

          • the second dimension (0 cm) only affects the second positioning (here left).




          documentclass{article}
          usepackage{tikz}
          usetikzlibrary{positioning}
          usetikzlibrary{arrows}
          usetikzlibrary{backgrounds}
          usetikzlibrary{fit}
          usetikzlibrary{decorations.pathmorphing}

          tikzset{squarenode/.style = {
          shape = rectangle,
          fill = gray!50,
          draw = black,
          thick,
          minimum height = 1cm,
          minimum width = 1cm
          }}

          tikzset{circlenode/.style = {
          shape = circle,
          fill = blue!20,
          draw = blue,
          thick,
          minimum size = 1cm
          }}

          tikzset{help lines/.style=very thin}
          tikzset{My Grid/.style={help lines,color=blue!50}}

          begin{document}
          begin{tikzpicture}
          [>=stealth']
          %draw[My Grid] (-5,-5) grid (15,15);
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
          node[above=1ex of s3,red] {$s leq 3$};
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
          end{scope}

          begin{scope}[xshift=10cm]
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below left=1.2cm and 0cm of s2,] (s3) [circlenode] {s3bis}; %s3
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
          end{scope}
          end{scope}

          draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

          end{tikzpicture}
          end{document}


          screenshot






          share|improve this answer


























          • Yes. Can you please explain the solution .

            – subham soni
            yesterday






          • 1





            It is done ! Is that clearer ? Is that better?

            – AndréC
            yesterday


















          1














          Like this?



          The positioning library allows you to place nodes relative to others. When writing:



          node[below left=1.2cm and 0cm of s2,] 


          the two dimensions each act on the position key :




          • the first dimension (1.2 cm) acts only on the first positioning (here below)

          • the second dimension (0 cm) only affects the second positioning (here left).




          documentclass{article}
          usepackage{tikz}
          usetikzlibrary{positioning}
          usetikzlibrary{arrows}
          usetikzlibrary{backgrounds}
          usetikzlibrary{fit}
          usetikzlibrary{decorations.pathmorphing}

          tikzset{squarenode/.style = {
          shape = rectangle,
          fill = gray!50,
          draw = black,
          thick,
          minimum height = 1cm,
          minimum width = 1cm
          }}

          tikzset{circlenode/.style = {
          shape = circle,
          fill = blue!20,
          draw = blue,
          thick,
          minimum size = 1cm
          }}

          tikzset{help lines/.style=very thin}
          tikzset{My Grid/.style={help lines,color=blue!50}}

          begin{document}
          begin{tikzpicture}
          [>=stealth']
          %draw[My Grid] (-5,-5) grid (15,15);
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
          node[above=1ex of s3,red] {$s leq 3$};
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
          end{scope}

          begin{scope}[xshift=10cm]
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below left=1.2cm and 0cm of s2,] (s3) [circlenode] {s3bis}; %s3
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
          end{scope}
          end{scope}

          draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

          end{tikzpicture}
          end{document}


          screenshot






          share|improve this answer


























          • Yes. Can you please explain the solution .

            – subham soni
            yesterday






          • 1





            It is done ! Is that clearer ? Is that better?

            – AndréC
            yesterday
















          1












          1








          1







          Like this?



          The positioning library allows you to place nodes relative to others. When writing:



          node[below left=1.2cm and 0cm of s2,] 


          the two dimensions each act on the position key :




          • the first dimension (1.2 cm) acts only on the first positioning (here below)

          • the second dimension (0 cm) only affects the second positioning (here left).




          documentclass{article}
          usepackage{tikz}
          usetikzlibrary{positioning}
          usetikzlibrary{arrows}
          usetikzlibrary{backgrounds}
          usetikzlibrary{fit}
          usetikzlibrary{decorations.pathmorphing}

          tikzset{squarenode/.style = {
          shape = rectangle,
          fill = gray!50,
          draw = black,
          thick,
          minimum height = 1cm,
          minimum width = 1cm
          }}

          tikzset{circlenode/.style = {
          shape = circle,
          fill = blue!20,
          draw = blue,
          thick,
          minimum size = 1cm
          }}

          tikzset{help lines/.style=very thin}
          tikzset{My Grid/.style={help lines,color=blue!50}}

          begin{document}
          begin{tikzpicture}
          [>=stealth']
          %draw[My Grid] (-5,-5) grid (15,15);
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
          node[above=1ex of s3,red] {$s leq 3$};
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
          end{scope}

          begin{scope}[xshift=10cm]
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below left=1.2cm and 0cm of s2,] (s3) [circlenode] {s3bis}; %s3
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
          end{scope}
          end{scope}

          draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

          end{tikzpicture}
          end{document}


          screenshot






          share|improve this answer















          Like this?



          The positioning library allows you to place nodes relative to others. When writing:



          node[below left=1.2cm and 0cm of s2,] 


          the two dimensions each act on the position key :




          • the first dimension (1.2 cm) acts only on the first positioning (here below)

          • the second dimension (0 cm) only affects the second positioning (here left).




          documentclass{article}
          usepackage{tikz}
          usetikzlibrary{positioning}
          usetikzlibrary{arrows}
          usetikzlibrary{backgrounds}
          usetikzlibrary{fit}
          usetikzlibrary{decorations.pathmorphing}

          tikzset{squarenode/.style = {
          shape = rectangle,
          fill = gray!50,
          draw = black,
          thick,
          minimum height = 1cm,
          minimum width = 1cm
          }}

          tikzset{circlenode/.style = {
          shape = circle,
          fill = blue!20,
          draw = blue,
          thick,
          minimum size = 1cm
          }}

          tikzset{help lines/.style=very thin}
          tikzset{My Grid/.style={help lines,color=blue!50}}

          begin{document}
          begin{tikzpicture}
          [>=stealth']
          %draw[My Grid] (-5,-5) grid (15,15);
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below=1cm of s2] (s3) [circlenode] {s3}; %s3
          node[above=1ex of s3,red] {$s leq 3$};
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R1) {};
          end{scope}

          begin{scope}[xshift=10cm]
          node (r1) at (-4,4) [squarenode] {r1};
          node[right=4cm of r1] (r2) [squarenode] {r2};
          node[below=3cm of r1] (r3) [squarenode] {r3};
          node[right=4cm of r3] (r4) [squarenode] {r4};
          node[right=1.5cm of r1] (s2) [circlenode] {s2};
          node[above=1cm of s2] (s1) [circlenode] {}; %s1
          node[below left=1.2cm and 0cm of s2,] (s3) [circlenode] {s3bis}; %s3
          node[right=1.5cm of r3] (s4) [circlenode] {s4};
          node[below=1cm of s4] (s5) [circlenode] {}; %s5
          draw[fill=black] (s1.center) circle [radius=0.1cm];
          draw[fill=black] (s5.center) circle [radius=0.1cm];
          draw[->] (r1) -- (s2);
          draw[->] (s2) -- (r2);
          draw[->] (r3) -- (s4);
          draw[->] (s4) -- (r4);
          draw[->] (s1) to [out=180,in=90] (r1);
          draw[->] (r1) to [out=-90,in=180] (s3);
          draw[->] (s3) to [out=0,in=-90] (r2);
          draw[->] (r2) to [bend right=45] node[auto,swap] {2} (s1);
          draw[->] (r3) to [out=90,in=180] (s3);
          draw[->] (s3) to [out=0,in=90] (r4);
          draw[->] (r4) to [bend left=45] node[auto] {2} (s5);
          draw[->] (s5) to [bend left=45] (r3);
          begin{scope}[on background layer]
          node [fill=gray!15,rounded corners,fit=(s1) (s3) (s5) (r1) (r2)] (R2) {};
          end{scope}
          end{scope}

          draw[shorten >=1mm,-to,thick,decorate,decoration={snake,amplitude=.4mm,segment length=2mm,pre=moveto,pre length=1mm,post length=2mm}] (R1) -- (R2) node [above=1mm,midway,text width=3cm,align=center] {replacement of the textcolor{red}{capacity} by textcolor{red}{two places}};

          end{tikzpicture}
          end{document}


          screenshot







          share|improve this answer














          share|improve this answer



          share|improve this answer








          edited yesterday

























          answered yesterday









          AndréCAndréC

          9,90311547




          9,90311547













          • Yes. Can you please explain the solution .

            – subham soni
            yesterday






          • 1





            It is done ! Is that clearer ? Is that better?

            – AndréC
            yesterday





















          • Yes. Can you please explain the solution .

            – subham soni
            yesterday






          • 1





            It is done ! Is that clearer ? Is that better?

            – AndréC
            yesterday



















          Yes. Can you please explain the solution .

          – subham soni
          yesterday





          Yes. Can you please explain the solution .

          – subham soni
          yesterday




          1




          1





          It is done ! Is that clearer ? Is that better?

          – AndréC
          yesterday







          It is done ! Is that clearer ? Is that better?

          – AndréC
          yesterday




















          draft saved

          draft discarded




















































          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.




          draft saved


          draft discarded














          StackExchange.ready(
          function () {
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f477885%2fpetri-net-displace-a-node-by-x-units-after-using-relative-positioning-in-tikz%23new-answer', 'question_page');
          }
          );

          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







          Popular posts from this blog

          Why does my Macbook overheat and use so much CPU and energy when on YouTube?Why do so many insist on using...

          How to prevent page numbers from appearing on glossaries?How to remove a dot and a page number in the...

          Puerta de Hutt Referencias Enlaces externos Menú de navegación15°58′00″S 5°42′00″O /...