How does TikZ extract the pgf-keys in LaTeXProblem between pgfkeys, tikz and personal macroHow can I put a coloured outline around fraction lines?Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionHow can we define a custom variant of addplot, including new keys and default values?tikz shapes, not quite getting things right (anchors and keys)Drawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingHow can I reliably and consistently save PGF keys filtered by path to a macro for later use?Close scope for global options in a tikz-pgf pathLine up nested tikz enviroments or how to get rid of themHow to draw a square and its diagonals with arrows?

At which point does a character regain all their Hit Dice?

Is a roofing delivery truck likely to crack my driveway slab?

Is exact Kanji stroke length important?

Hostile work environment after whistle-blowing on coworker and our boss. What do I do?

How can a jailer prevent the Forge Cleric's Artisan's Blessing from being used?

How do I define a right arrow with bar in LaTeX?

Have I saved too much for retirement so far?

What will be the benefits of Brexit?

Is there any reason not to eat food that's been dropped on the surface of the moon?

Curses work by shouting - How to avoid collateral damage?

Implement the Thanos sorting algorithm

Can a monster with multiattack use this ability if they are missing a limb?

How does residential electricity work?

Efficiently merge handle parallel feature branches in SFDX

Is HostGator storing my password in plaintext?

Is there a problem with hiding "forgot password" until it's needed?

Personal Teleportation as a Weapon

What would happen if the UK refused to take part in EU Parliamentary elections?

Is there any easy technique written in Bhagavad GITA to control lust?

Is expanding the research of a group into machine learning as a PhD student risky?

The baby cries all morning

Lay out the Carpet

Where in the Bible does the greeting ("Dominus Vobiscum") used at Mass come from?

Should my PhD thesis be submitted under my legal name?



How does TikZ extract the pgf-keys in LaTeX


Problem between pgfkeys, tikz and personal macroHow can I put a coloured outline around fraction lines?Numerical conditional within tikz keys?TikZ: Drawing an arc from an intersection to an intersectionHow can we define a custom variant of addplot, including new keys and default values?tikz shapes, not quite getting things right (anchors and keys)Drawing rectilinear curves in Tikz, aka an Etch-a-Sketch drawingHow can I reliably and consistently save PGF keys filtered by path to a macro for later use?Close scope for global options in a tikz-pgf pathLine up nested tikz enviroments or how to get rid of themHow to draw a square and its diagonals with arrows?













4















In any TikZ command, for example draw, how does TikZ extract the keys, as they can be in any order.



For example, the following draw statements, give the same output (in different locations in the 2D space though):



documentclassarticle
usepackagetikz
begindocument
tikz draw[->,red,thick,dashed] (0,0) |- (2,2);
tikz draw[->,thick,red,dashed] (3,0) |- (0,5);
enddocument


The first draw command has the keys, red, thick and dashed.



The seconddraw command has the keys, thick, red and dashed.



How does TikZ/LaTeX know, red means color, thick is thickness of the line.



What is the logic behind this.










share|improve this question

















  • 1





    thick is a known key, and tikz tries to map unknown keys like red to colors.

    – Ulrike Fischer
    yesterday











  • Please have a look at p. 962 of the pgfmanual where .search also is explained. (The colors do not work precisely that way but it explains a bit how it can happen that TikZ tries to find a reasonable interpretation of a key. The color behavior is determined by tikzoptioncolor... in tikz.code.tex.)

    – marmot
    yesterday















4















In any TikZ command, for example draw, how does TikZ extract the keys, as they can be in any order.



For example, the following draw statements, give the same output (in different locations in the 2D space though):



documentclassarticle
usepackagetikz
begindocument
tikz draw[->,red,thick,dashed] (0,0) |- (2,2);
tikz draw[->,thick,red,dashed] (3,0) |- (0,5);
enddocument


The first draw command has the keys, red, thick and dashed.



The seconddraw command has the keys, thick, red and dashed.



How does TikZ/LaTeX know, red means color, thick is thickness of the line.



What is the logic behind this.










share|improve this question

















  • 1





    thick is a known key, and tikz tries to map unknown keys like red to colors.

    – Ulrike Fischer
    yesterday











  • Please have a look at p. 962 of the pgfmanual where .search also is explained. (The colors do not work precisely that way but it explains a bit how it can happen that TikZ tries to find a reasonable interpretation of a key. The color behavior is determined by tikzoptioncolor... in tikz.code.tex.)

    – marmot
    yesterday













4












4








4








In any TikZ command, for example draw, how does TikZ extract the keys, as they can be in any order.



For example, the following draw statements, give the same output (in different locations in the 2D space though):



documentclassarticle
usepackagetikz
begindocument
tikz draw[->,red,thick,dashed] (0,0) |- (2,2);
tikz draw[->,thick,red,dashed] (3,0) |- (0,5);
enddocument


The first draw command has the keys, red, thick and dashed.



The seconddraw command has the keys, thick, red and dashed.



How does TikZ/LaTeX know, red means color, thick is thickness of the line.



What is the logic behind this.










share|improve this question














In any TikZ command, for example draw, how does TikZ extract the keys, as they can be in any order.



For example, the following draw statements, give the same output (in different locations in the 2D space though):



documentclassarticle
usepackagetikz
begindocument
tikz draw[->,red,thick,dashed] (0,0) |- (2,2);
tikz draw[->,thick,red,dashed] (3,0) |- (0,5);
enddocument


The first draw command has the keys, red, thick and dashed.



The seconddraw command has the keys, thick, red and dashed.



How does TikZ/LaTeX know, red means color, thick is thickness of the line.



What is the logic behind this.







tikz-pgf pgfkeys






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked yesterday









subham sonisubham soni

4,54983184




4,54983184







  • 1





    thick is a known key, and tikz tries to map unknown keys like red to colors.

    – Ulrike Fischer
    yesterday











  • Please have a look at p. 962 of the pgfmanual where .search also is explained. (The colors do not work precisely that way but it explains a bit how it can happen that TikZ tries to find a reasonable interpretation of a key. The color behavior is determined by tikzoptioncolor... in tikz.code.tex.)

    – marmot
    yesterday












  • 1





    thick is a known key, and tikz tries to map unknown keys like red to colors.

    – Ulrike Fischer
    yesterday











  • Please have a look at p. 962 of the pgfmanual where .search also is explained. (The colors do not work precisely that way but it explains a bit how it can happen that TikZ tries to find a reasonable interpretation of a key. The color behavior is determined by tikzoptioncolor... in tikz.code.tex.)

    – marmot
    yesterday







1




1





thick is a known key, and tikz tries to map unknown keys like red to colors.

– Ulrike Fischer
yesterday





thick is a known key, and tikz tries to map unknown keys like red to colors.

– Ulrike Fischer
yesterday













Please have a look at p. 962 of the pgfmanual where .search also is explained. (The colors do not work precisely that way but it explains a bit how it can happen that TikZ tries to find a reasonable interpretation of a key. The color behavior is determined by tikzoptioncolor... in tikz.code.tex.)

– marmot
yesterday





Please have a look at p. 962 of the pgfmanual where .search also is explained. (The colors do not work precisely that way but it explains a bit how it can happen that TikZ tries to find a reasonable interpretation of a key. The color behavior is determined by tikzoptioncolor... in tikz.code.tex.)

– marmot
yesterday










2 Answers
2






active

oldest

votes


















3














The pgfkeys package allows 'styles' to be defined as shortcuts to normal keyvals. Thus thick is a shortcut for line width = 0.8pt and red is (approximately) a shortcut for draw = red. Ultimately, which are defined is down to the pgf implementers.




As mentioned in Problem between pgfkeys, tikz and personal macro, some of these shortcuts are not actually normal keys but are rather found on a specifically-coded path of the pgfkeys parser. In particular, many TikZ commands attempt to treat unknown keys as colours before 'giving up'.






share|improve this answer

























  • Maybe thickness = 0.8pt -> line width=0.8pt.

    – marmot
    yesterday


















1














It turns out the color, shape names and arrow names are not actual keys possible because there are too numerous of them. Here @percusse explains how it is handled in the code.



Problem between pgfkeys, tikz and personal macro






share|improve this answer








New contributor




user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.



















    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%2f481310%2fhow-does-tikz-extract-the-pgf-keys-in-latex%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    The pgfkeys package allows 'styles' to be defined as shortcuts to normal keyvals. Thus thick is a shortcut for line width = 0.8pt and red is (approximately) a shortcut for draw = red. Ultimately, which are defined is down to the pgf implementers.




    As mentioned in Problem between pgfkeys, tikz and personal macro, some of these shortcuts are not actually normal keys but are rather found on a specifically-coded path of the pgfkeys parser. In particular, many TikZ commands attempt to treat unknown keys as colours before 'giving up'.






    share|improve this answer

























    • Maybe thickness = 0.8pt -> line width=0.8pt.

      – marmot
      yesterday















    3














    The pgfkeys package allows 'styles' to be defined as shortcuts to normal keyvals. Thus thick is a shortcut for line width = 0.8pt and red is (approximately) a shortcut for draw = red. Ultimately, which are defined is down to the pgf implementers.




    As mentioned in Problem between pgfkeys, tikz and personal macro, some of these shortcuts are not actually normal keys but are rather found on a specifically-coded path of the pgfkeys parser. In particular, many TikZ commands attempt to treat unknown keys as colours before 'giving up'.






    share|improve this answer

























    • Maybe thickness = 0.8pt -> line width=0.8pt.

      – marmot
      yesterday













    3












    3








    3







    The pgfkeys package allows 'styles' to be defined as shortcuts to normal keyvals. Thus thick is a shortcut for line width = 0.8pt and red is (approximately) a shortcut for draw = red. Ultimately, which are defined is down to the pgf implementers.




    As mentioned in Problem between pgfkeys, tikz and personal macro, some of these shortcuts are not actually normal keys but are rather found on a specifically-coded path of the pgfkeys parser. In particular, many TikZ commands attempt to treat unknown keys as colours before 'giving up'.






    share|improve this answer















    The pgfkeys package allows 'styles' to be defined as shortcuts to normal keyvals. Thus thick is a shortcut for line width = 0.8pt and red is (approximately) a shortcut for draw = red. Ultimately, which are defined is down to the pgf implementers.




    As mentioned in Problem between pgfkeys, tikz and personal macro, some of these shortcuts are not actually normal keys but are rather found on a specifically-coded path of the pgfkeys parser. In particular, many TikZ commands attempt to treat unknown keys as colours before 'giving up'.







    share|improve this answer














    share|improve this answer



    share|improve this answer








    edited yesterday

























    answered yesterday









    Joseph WrightJoseph Wright

    205k23562890




    205k23562890












    • Maybe thickness = 0.8pt -> line width=0.8pt.

      – marmot
      yesterday

















    • Maybe thickness = 0.8pt -> line width=0.8pt.

      – marmot
      yesterday
















    Maybe thickness = 0.8pt -> line width=0.8pt.

    – marmot
    yesterday





    Maybe thickness = 0.8pt -> line width=0.8pt.

    – marmot
    yesterday











    1














    It turns out the color, shape names and arrow names are not actual keys possible because there are too numerous of them. Here @percusse explains how it is handled in the code.



    Problem between pgfkeys, tikz and personal macro






    share|improve this answer








    New contributor




    user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.
























      1














      It turns out the color, shape names and arrow names are not actual keys possible because there are too numerous of them. Here @percusse explains how it is handled in the code.



      Problem between pgfkeys, tikz and personal macro






      share|improve this answer








      New contributor




      user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






















        1












        1








        1







        It turns out the color, shape names and arrow names are not actual keys possible because there are too numerous of them. Here @percusse explains how it is handled in the code.



        Problem between pgfkeys, tikz and personal macro






        share|improve this answer








        New contributor




        user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.










        It turns out the color, shape names and arrow names are not actual keys possible because there are too numerous of them. Here @percusse explains how it is handled in the code.



        Problem between pgfkeys, tikz and personal macro







        share|improve this answer








        New contributor




        user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        share|improve this answer



        share|improve this answer






        New contributor




        user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.









        answered yesterday









        user184225user184225

        111




        111




        New contributor




        user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.





        New contributor





        user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.






        user184225 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
        Check out our Code of Conduct.



























            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%2f481310%2fhow-does-tikz-extract-the-pgf-keys-in-latex%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

            getting Checkpoint VPN SSL Network Extender working in the command lineHow to connect to CheckPoint VPN on Ubuntu 18.04LTS?Will the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayVPN SSL Network Extender in FirefoxLinux Checkpoint SNX tool configuration issuesCheck Point - Connect under Linux - snx + OTPSNX VPN Ububuntu 18.XXUsing Checkpoint VPN SSL Network Extender CLI with certificateVPN with network manager (nm-applet) is not workingWill the Linux ( red-hat ) Open VPNC Client connect to checkpoint or nortel VPN gateways?VPN client for linux machine + support checkpoint gatewayImport VPN config files to NetworkManager from command lineTrouble connecting to VPN using network-manager, while command line worksStart a VPN connection with PPTP protocol on command linestarting a docker service daemon breaks the vpn networkCan't connect to vpn with Network-managerVPN SSL Network Extender in FirefoxUsing Checkpoint VPN SSL Network Extender CLI with certificate

            Cannot Extend partition with GParted The 2019 Stack Overflow Developer Survey Results Are In Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election ResultsCan't increase partition size with GParted?GParted doesn't recognize the unallocated space after my current partitionWhat is the best way to add unallocated space located before to Ubuntu 12.04 partition with GParted live?I can't figure out how to extend my Arch home partition into free spaceGparted Linux Mint 18.1 issueTrying to extend but swap partition is showing as Unknown in Gparted, shows proper from fdiskRearrange partitions in gparted to extend a partitionUnable to extend partition even though unallocated space is next to it using GPartedAllocate free space to root partitiongparted: how to merge unallocated space with a partition

            Marilyn Monroe Ny fiainany manokana | Jereo koa | Meny fitetezanafanitarana azy.