Aligning matrix of nodes with gridNodes and matrix of nodesAutoconnecting tikz-matrix nodesHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionLine up nested tikz enviroments or how to get rid of themProblem on matrix of nodes with complex nodesScaled TikZ matrix of nodesadd grid on matrixAutomatically find which nodes are closest, to aid drawing lines within a TikZ matrix

Is the capacitor drawn or wired wrongly?

Estimate related to the Möbius function

If Sweden was to magically float away, at what altitude would it be visible from the southern hemisphere?

How can I offer a test ride while selling a bike?

What is the most important characteristic of New Weird as a genre?

The qvolume of an integer

Working in the USA for living expenses only; allowed on VWP?

Pros and cons of writing a book review?

What is the right way to float a home lab?

Neither Advanced Search nor Search Builder offer option to save as Smart Group

How to decline physical affection from a child whose parents are pressuring them?

Opposite of "Squeaky wheel gets the grease"

Is there a way to save this session?

Does Peach's float negate shorthop knockback multipliers?

Is having a hidden directory under /etc safe?

What if you don't bring your credit card or debit for incidentals?

Why is Colorado so different politically from nearby states?

How much current can Baofeng UV-5R provide on +V pin?

What should I do about a religious player who refuses to accept the existence of multiple gods in D&D?

Why does my electric oven present the option of 40A and 50A breakers?

What is a simple, physical situation where complex numbers emerge naturally?

Could a guilty Boris Johnson be used to cancel Brexit?

Order by does not work as I expect

Are grass strips more dangerous than tarmac?



Aligning matrix of nodes with grid


Nodes and matrix of nodesAutoconnecting tikz-matrix nodesHow to define the default vertical distance between nodes?TikZ scaling graphic and adjust node position and keep font sizeNumerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionLine up nested tikz enviroments or how to get rid of themProblem on matrix of nodes with complex nodesScaled TikZ matrix of nodesadd grid on matrixAutomatically find which nodes are closest, to aid drawing lines within a TikZ matrix













2















I am trying to render a grid of stones using the code below, however when I remove the stone in m-3-1, the stones above and to the right of it (particularly m-1-5) will be off-center:



alignedmisaligned



documentclassminimal
usepackagetikz
usetikzlibrarymatrix,shapes.geometric
newcommandstone[0] % https://tex.stackexchange.com/a/184068/45824
begindocument
begintikzpicture
matrix (m) [matrix of nodes,
anchor=south west,
column sep=1cm,between origins,
row sep=1cm,between origins,
nodes in empty cells,
]

& & & & stone \
& & & & \
stone & & & & \
;
draw[step=1cm,color=gray] (0,0) grid (5,3);
draw[thick,red,->] (m-1-1) -> (m-1-5);
draw[thick,red,->] (m-1-5) -> (m-3-5);
endtikzpicture
enddocument


How do I ensure all the stones are aligned correctly?










share|improve this question
























  • First: don't use tikzstyle. Use tikzset instead.

    – The old JouleV
    Apr 14 at 16:48











  • @JouleV thanks, I moved it into the newcommand definition.

    – Jan Tojnar
    Apr 14 at 16:55















2















I am trying to render a grid of stones using the code below, however when I remove the stone in m-3-1, the stones above and to the right of it (particularly m-1-5) will be off-center:



alignedmisaligned



documentclassminimal
usepackagetikz
usetikzlibrarymatrix,shapes.geometric
newcommandstone[0] % https://tex.stackexchange.com/a/184068/45824
begindocument
begintikzpicture
matrix (m) [matrix of nodes,
anchor=south west,
column sep=1cm,between origins,
row sep=1cm,between origins,
nodes in empty cells,
]

& & & & stone \
& & & & \
stone & & & & \
;
draw[step=1cm,color=gray] (0,0) grid (5,3);
draw[thick,red,->] (m-1-1) -> (m-1-5);
draw[thick,red,->] (m-1-5) -> (m-3-5);
endtikzpicture
enddocument


How do I ensure all the stones are aligned correctly?










share|improve this question
























  • First: don't use tikzstyle. Use tikzset instead.

    – The old JouleV
    Apr 14 at 16:48











  • @JouleV thanks, I moved it into the newcommand definition.

    – Jan Tojnar
    Apr 14 at 16:55













2












2








2


0






I am trying to render a grid of stones using the code below, however when I remove the stone in m-3-1, the stones above and to the right of it (particularly m-1-5) will be off-center:



alignedmisaligned



documentclassminimal
usepackagetikz
usetikzlibrarymatrix,shapes.geometric
newcommandstone[0] % https://tex.stackexchange.com/a/184068/45824
begindocument
begintikzpicture
matrix (m) [matrix of nodes,
anchor=south west,
column sep=1cm,between origins,
row sep=1cm,between origins,
nodes in empty cells,
]

& & & & stone \
& & & & \
stone & & & & \
;
draw[step=1cm,color=gray] (0,0) grid (5,3);
draw[thick,red,->] (m-1-1) -> (m-1-5);
draw[thick,red,->] (m-1-5) -> (m-3-5);
endtikzpicture
enddocument


How do I ensure all the stones are aligned correctly?










share|improve this question
















I am trying to render a grid of stones using the code below, however when I remove the stone in m-3-1, the stones above and to the right of it (particularly m-1-5) will be off-center:



alignedmisaligned



documentclassminimal
usepackagetikz
usetikzlibrarymatrix,shapes.geometric
newcommandstone[0] % https://tex.stackexchange.com/a/184068/45824
begindocument
begintikzpicture
matrix (m) [matrix of nodes,
anchor=south west,
column sep=1cm,between origins,
row sep=1cm,between origins,
nodes in empty cells,
]

& & & & stone \
& & & & \
stone & & & & \
;
draw[step=1cm,color=gray] (0,0) grid (5,3);
draw[thick,red,->] (m-1-1) -> (m-1-5);
draw[thick,red,->] (m-1-5) -> (m-3-5);
endtikzpicture
enddocument


How do I ensure all the stones are aligned correctly?







tikz-pgf tikz-matrix






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Apr 14 at 17:01









The old JouleV

19.5k43175




19.5k43175










asked Apr 14 at 16:38









Jan TojnarJan Tojnar

1156




1156












  • First: don't use tikzstyle. Use tikzset instead.

    – The old JouleV
    Apr 14 at 16:48











  • @JouleV thanks, I moved it into the newcommand definition.

    – Jan Tojnar
    Apr 14 at 16:55

















  • First: don't use tikzstyle. Use tikzset instead.

    – The old JouleV
    Apr 14 at 16:48











  • @JouleV thanks, I moved it into the newcommand definition.

    – Jan Tojnar
    Apr 14 at 16:55
















First: don't use tikzstyle. Use tikzset instead.

– The old JouleV
Apr 14 at 16:48





First: don't use tikzstyle. Use tikzset instead.

– The old JouleV
Apr 14 at 16:48













@JouleV thanks, I moved it into the newcommand definition.

– Jan Tojnar
Apr 14 at 16:55





@JouleV thanks, I moved it into the newcommand definition.

– Jan Tojnar
Apr 14 at 16:55










1 Answer
1






active

oldest

votes


















4














Cause of issue



First, your "working" code doesn't even output the intended diagram: the circles are not aligned yet



enter image description here



Adding option draw to every nodes in the "not working" code gives us



enter image description here



which can explain the problem: your nodes are aligned correctly, but the matrix itself is not at the right place.



Solution



  • Use tikzset

  • Add option inner sep

  • Use minimum size option for nodes

  • Use anchor center for the arrows (see more below)



documentclassminimal
usepackagetikz
usetikzlibrarymatrix,shapes.geometric
tikzsetstone/.style=circle,shading=ball,ball color=black!80!white,minimum size=.8cm
newcommandstone % https://tex.stackexchange.com/a/184068/45824
begindocument
begintikzpicture
matrix (m) [matrix of nodes,
anchor=south west,
column sep=1cm,between origins,
row sep=1cm,between origins,
nodes in empty cells,
nodes=minimum size=1cm,
inner sep=0pt
]

& & & & stone \
& & & & \
& & & & \
;
draw[step=1cm,color=gray] (0,0) grid (5,3);
draw[thick,red,->] (m-1-1.center) -> (m-1-5);
draw[thick,red,->] (m-1-5) -> (m-3-5.center);
endtikzpicture
enddocument


enter image description here






share|improve this answer

























    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%2f484825%2faligning-matrix-of-nodes-with-grid%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









    4














    Cause of issue



    First, your "working" code doesn't even output the intended diagram: the circles are not aligned yet



    enter image description here



    Adding option draw to every nodes in the "not working" code gives us



    enter image description here



    which can explain the problem: your nodes are aligned correctly, but the matrix itself is not at the right place.



    Solution



    • Use tikzset

    • Add option inner sep

    • Use minimum size option for nodes

    • Use anchor center for the arrows (see more below)



    documentclassminimal
    usepackagetikz
    usetikzlibrarymatrix,shapes.geometric
    tikzsetstone/.style=circle,shading=ball,ball color=black!80!white,minimum size=.8cm
    newcommandstone % https://tex.stackexchange.com/a/184068/45824
    begindocument
    begintikzpicture
    matrix (m) [matrix of nodes,
    anchor=south west,
    column sep=1cm,between origins,
    row sep=1cm,between origins,
    nodes in empty cells,
    nodes=minimum size=1cm,
    inner sep=0pt
    ]

    & & & & stone \
    & & & & \
    & & & & \
    ;
    draw[step=1cm,color=gray] (0,0) grid (5,3);
    draw[thick,red,->] (m-1-1.center) -> (m-1-5);
    draw[thick,red,->] (m-1-5) -> (m-3-5.center);
    endtikzpicture
    enddocument


    enter image description here






    share|improve this answer





























      4














      Cause of issue



      First, your "working" code doesn't even output the intended diagram: the circles are not aligned yet



      enter image description here



      Adding option draw to every nodes in the "not working" code gives us



      enter image description here



      which can explain the problem: your nodes are aligned correctly, but the matrix itself is not at the right place.



      Solution



      • Use tikzset

      • Add option inner sep

      • Use minimum size option for nodes

      • Use anchor center for the arrows (see more below)



      documentclassminimal
      usepackagetikz
      usetikzlibrarymatrix,shapes.geometric
      tikzsetstone/.style=circle,shading=ball,ball color=black!80!white,minimum size=.8cm
      newcommandstone % https://tex.stackexchange.com/a/184068/45824
      begindocument
      begintikzpicture
      matrix (m) [matrix of nodes,
      anchor=south west,
      column sep=1cm,between origins,
      row sep=1cm,between origins,
      nodes in empty cells,
      nodes=minimum size=1cm,
      inner sep=0pt
      ]

      & & & & stone \
      & & & & \
      & & & & \
      ;
      draw[step=1cm,color=gray] (0,0) grid (5,3);
      draw[thick,red,->] (m-1-1.center) -> (m-1-5);
      draw[thick,red,->] (m-1-5) -> (m-3-5.center);
      endtikzpicture
      enddocument


      enter image description here






      share|improve this answer



























        4












        4








        4







        Cause of issue



        First, your "working" code doesn't even output the intended diagram: the circles are not aligned yet



        enter image description here



        Adding option draw to every nodes in the "not working" code gives us



        enter image description here



        which can explain the problem: your nodes are aligned correctly, but the matrix itself is not at the right place.



        Solution



        • Use tikzset

        • Add option inner sep

        • Use minimum size option for nodes

        • Use anchor center for the arrows (see more below)



        documentclassminimal
        usepackagetikz
        usetikzlibrarymatrix,shapes.geometric
        tikzsetstone/.style=circle,shading=ball,ball color=black!80!white,minimum size=.8cm
        newcommandstone % https://tex.stackexchange.com/a/184068/45824
        begindocument
        begintikzpicture
        matrix (m) [matrix of nodes,
        anchor=south west,
        column sep=1cm,between origins,
        row sep=1cm,between origins,
        nodes in empty cells,
        nodes=minimum size=1cm,
        inner sep=0pt
        ]

        & & & & stone \
        & & & & \
        & & & & \
        ;
        draw[step=1cm,color=gray] (0,0) grid (5,3);
        draw[thick,red,->] (m-1-1.center) -> (m-1-5);
        draw[thick,red,->] (m-1-5) -> (m-3-5.center);
        endtikzpicture
        enddocument


        enter image description here






        share|improve this answer















        Cause of issue



        First, your "working" code doesn't even output the intended diagram: the circles are not aligned yet



        enter image description here



        Adding option draw to every nodes in the "not working" code gives us



        enter image description here



        which can explain the problem: your nodes are aligned correctly, but the matrix itself is not at the right place.



        Solution



        • Use tikzset

        • Add option inner sep

        • Use minimum size option for nodes

        • Use anchor center for the arrows (see more below)



        documentclassminimal
        usepackagetikz
        usetikzlibrarymatrix,shapes.geometric
        tikzsetstone/.style=circle,shading=ball,ball color=black!80!white,minimum size=.8cm
        newcommandstone % https://tex.stackexchange.com/a/184068/45824
        begindocument
        begintikzpicture
        matrix (m) [matrix of nodes,
        anchor=south west,
        column sep=1cm,between origins,
        row sep=1cm,between origins,
        nodes in empty cells,
        nodes=minimum size=1cm,
        inner sep=0pt
        ]

        & & & & stone \
        & & & & \
        & & & & \
        ;
        draw[step=1cm,color=gray] (0,0) grid (5,3);
        draw[thick,red,->] (m-1-1.center) -> (m-1-5);
        draw[thick,red,->] (m-1-5) -> (m-3-5.center);
        endtikzpicture
        enddocument


        enter image description here







        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited Apr 14 at 20:20

























        answered Apr 14 at 16:54









        The old JouleVThe old JouleV

        19.5k43175




        19.5k43175



























            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%2f484825%2faligning-matrix-of-nodes-with-grid%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

            Tamil (spriik) Luke uk diar | Nawigatjuun

            Align equal signs while including text over equalitiesAMS align: left aligned text/math plus multicolumn alignmentMultiple alignmentsAligning equations in multiple placesNumbering and aligning an equation with multiple columnsHow to align one equation with another multline equationUsing \ in environments inside the begintabularxNumber equations and preserving alignment of equal signsHow can I align equations to the left and to the right?Double equation alignment problem within align enviromentAligned within align: Why are they right-aligned?

            Where does the image of a data connector as a sharp metal spike originate from?Where does the concept of infected people turning into zombies only after death originate from?Where does the motif of a reanimated human head originate?Where did the notion that Dragons could speak originate?Where does the archetypal image of the 'Grey' alien come from?Where did the suffix '-Man' originate?Where does the notion of being injured or killed by an illusion originate?Where did the term “sophont” originate?Where does the trope of magic spells being driven by advanced technology originate from?Where did the term “the living impaired” originate?