How to give multiple axis the same style/options

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












5















I would like to pick your brains again on a small issue.



I want to use tikzstyle to describe the style of multiple plots but when I copy and paste the style I use on my plot, I get a compilation error.



Working code :



documentclassstandalone
usepackagepgfplots

begindocument

defT10
defK10

begintikzpicture
tikzstyleBode=
tikzstyleAsymp=[red,densely dashed,thick=1pt]
tikzstyleLieuReel=[thick=1pt]

defFloorWfloor(ln(1/T)/ln(10))
defCeilWceil(ln(1/T)/ln(10))
defGdbK20*ln(K)/ln(10)

beginsemilogxaxis[height=5cm,width=10cm,xlabel=$omega$,ylabel=$G_dB$,grid=both,axis x line=bottom, axis y line = left,ymax=(GdbK+4),xmax=10^(CeilW+2.2)]

addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
endsemilogxaxis
endtikzpicture

enddocument


Now, I put the style of my semilogaxis in the tikzstyleBode and type Bode in it instead



tikzstyleBode=[height=5cm,width=10cm,xlabel=$omega$,ylabel=$G_dB$,grid=both,axis x line=bottom, axis y line = left,ymax=(GdbK+4),xmax=10^(CeilW+2.2)]
...
beginsemilogxaxis[Bode]


and it gets me this error:



! Package pgfkeys Error: I do not know the key '/tikz/height', to which you passed '5cm', and I am going to ignore it. Perhaps you misspelled it.See the pgfkeys package documentation for explanation.Type H <return> for immediate help.... endsemilogxaxis


Can you help me ?










share|improve this question




























    5















    I would like to pick your brains again on a small issue.



    I want to use tikzstyle to describe the style of multiple plots but when I copy and paste the style I use on my plot, I get a compilation error.



    Working code :



    documentclassstandalone
    usepackagepgfplots

    begindocument

    defT10
    defK10

    begintikzpicture
    tikzstyleBode=
    tikzstyleAsymp=[red,densely dashed,thick=1pt]
    tikzstyleLieuReel=[thick=1pt]

    defFloorWfloor(ln(1/T)/ln(10))
    defCeilWceil(ln(1/T)/ln(10))
    defGdbK20*ln(K)/ln(10)

    beginsemilogxaxis[height=5cm,width=10cm,xlabel=$omega$,ylabel=$G_dB$,grid=both,axis x line=bottom, axis y line = left,ymax=(GdbK+4),xmax=10^(CeilW+2.2)]

    addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

    addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
    addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
    endsemilogxaxis
    endtikzpicture

    enddocument


    Now, I put the style of my semilogaxis in the tikzstyleBode and type Bode in it instead



    tikzstyleBode=[height=5cm,width=10cm,xlabel=$omega$,ylabel=$G_dB$,grid=both,axis x line=bottom, axis y line = left,ymax=(GdbK+4),xmax=10^(CeilW+2.2)]
    ...
    beginsemilogxaxis[Bode]


    and it gets me this error:



    ! Package pgfkeys Error: I do not know the key '/tikz/height', to which you passed '5cm', and I am going to ignore it. Perhaps you misspelled it.See the pgfkeys package documentation for explanation.Type H <return> for immediate help.... endsemilogxaxis


    Can you help me ?










    share|improve this question


























      5












      5








      5


      0






      I would like to pick your brains again on a small issue.



      I want to use tikzstyle to describe the style of multiple plots but when I copy and paste the style I use on my plot, I get a compilation error.



      Working code :



      documentclassstandalone
      usepackagepgfplots

      begindocument

      defT10
      defK10

      begintikzpicture
      tikzstyleBode=
      tikzstyleAsymp=[red,densely dashed,thick=1pt]
      tikzstyleLieuReel=[thick=1pt]

      defFloorWfloor(ln(1/T)/ln(10))
      defCeilWceil(ln(1/T)/ln(10))
      defGdbK20*ln(K)/ln(10)

      beginsemilogxaxis[height=5cm,width=10cm,xlabel=$omega$,ylabel=$G_dB$,grid=both,axis x line=bottom, axis y line = left,ymax=(GdbK+4),xmax=10^(CeilW+2.2)]

      addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

      addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
      addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
      endsemilogxaxis
      endtikzpicture

      enddocument


      Now, I put the style of my semilogaxis in the tikzstyleBode and type Bode in it instead



      tikzstyleBode=[height=5cm,width=10cm,xlabel=$omega$,ylabel=$G_dB$,grid=both,axis x line=bottom, axis y line = left,ymax=(GdbK+4),xmax=10^(CeilW+2.2)]
      ...
      beginsemilogxaxis[Bode]


      and it gets me this error:



      ! Package pgfkeys Error: I do not know the key '/tikz/height', to which you passed '5cm', and I am going to ignore it. Perhaps you misspelled it.See the pgfkeys package documentation for explanation.Type H <return> for immediate help.... endsemilogxaxis


      Can you help me ?










      share|improve this question
















      I would like to pick your brains again on a small issue.



      I want to use tikzstyle to describe the style of multiple plots but when I copy and paste the style I use on my plot, I get a compilation error.



      Working code :



      documentclassstandalone
      usepackagepgfplots

      begindocument

      defT10
      defK10

      begintikzpicture
      tikzstyleBode=
      tikzstyleAsymp=[red,densely dashed,thick=1pt]
      tikzstyleLieuReel=[thick=1pt]

      defFloorWfloor(ln(1/T)/ln(10))
      defCeilWceil(ln(1/T)/ln(10))
      defGdbK20*ln(K)/ln(10)

      beginsemilogxaxis[height=5cm,width=10cm,xlabel=$omega$,ylabel=$G_dB$,grid=both,axis x line=bottom, axis y line = left,ymax=(GdbK+4),xmax=10^(CeilW+2.2)]

      addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

      addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
      addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
      endsemilogxaxis
      endtikzpicture

      enddocument


      Now, I put the style of my semilogaxis in the tikzstyleBode and type Bode in it instead



      tikzstyleBode=[height=5cm,width=10cm,xlabel=$omega$,ylabel=$G_dB$,grid=both,axis x line=bottom, axis y line = left,ymax=(GdbK+4),xmax=10^(CeilW+2.2)]
      ...
      beginsemilogxaxis[Bode]


      and it gets me this error:



      ! Package pgfkeys Error: I do not know the key '/tikz/height', to which you passed '5cm', and I am going to ignore it. Perhaps you misspelled it.See the pgfkeys package documentation for explanation.Type H <return> for immediate help.... endsemilogxaxis


      Can you help me ?







      tikz-pgf errors tikz-styles pgfkeys






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Feb 17 at 17:09







      LMT-PhD

















      asked Feb 17 at 15:53









      LMT-PhDLMT-PhD

      41539




      41539




















          1 Answer
          1






          active

          oldest

          votes


















          5














          tikzstylefoo=[..] or the replacement tikzsetfoo/.style=.. looks in the /tikz family of keys, but width, height and the other axis parameters belong to the /pgfplots family, so you get an error that /tikz/width is unknown.



          Instead you can use pgfplotssetfoo/.style=.., then the keys are assumed to be in the /pgfplots family.



          By the way, in general it would be better to use newcommand instead of def, because then you won't accidentally overwrite existing macros.



          documentclassstandalone
          usepackagepgfplots

          begindocument

          newcommandT10
          newcommandK10

          begintikzpicture[
          Asymp/.style=red,densely dashed,thick=1pt,
          LieuReel/.style=thick=1pt
          ]


          newcommandFloorWfloor(ln(1/T)/ln(10))
          newcommandCeilWceil(ln(1/T)/ln(10))
          newcommandGdbK20*ln(K)/ln(10)
          pgfplotsset
          bode/.style=
          height=5cm,
          width=10cm,
          xlabel=$omega$,
          ylabel=$G_dB$,
          grid=both,
          axis x line=bottom,
          axis y line = left,
          ymax=(GdbK+4),
          xmax=10^(CeilW+2.2)

          beginsemilogxaxis[bode]

          addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

          addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
          addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
          endsemilogxaxis
          endtikzpicture

          enddocument





          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%2f475338%2fhow-to-give-multiple-axis-the-same-style-options%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









            5














            tikzstylefoo=[..] or the replacement tikzsetfoo/.style=.. looks in the /tikz family of keys, but width, height and the other axis parameters belong to the /pgfplots family, so you get an error that /tikz/width is unknown.



            Instead you can use pgfplotssetfoo/.style=.., then the keys are assumed to be in the /pgfplots family.



            By the way, in general it would be better to use newcommand instead of def, because then you won't accidentally overwrite existing macros.



            documentclassstandalone
            usepackagepgfplots

            begindocument

            newcommandT10
            newcommandK10

            begintikzpicture[
            Asymp/.style=red,densely dashed,thick=1pt,
            LieuReel/.style=thick=1pt
            ]


            newcommandFloorWfloor(ln(1/T)/ln(10))
            newcommandCeilWceil(ln(1/T)/ln(10))
            newcommandGdbK20*ln(K)/ln(10)
            pgfplotsset
            bode/.style=
            height=5cm,
            width=10cm,
            xlabel=$omega$,
            ylabel=$G_dB$,
            grid=both,
            axis x line=bottom,
            axis y line = left,
            ymax=(GdbK+4),
            xmax=10^(CeilW+2.2)

            beginsemilogxaxis[bode]

            addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

            addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
            addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
            endsemilogxaxis
            endtikzpicture

            enddocument





            share|improve this answer



























              5














              tikzstylefoo=[..] or the replacement tikzsetfoo/.style=.. looks in the /tikz family of keys, but width, height and the other axis parameters belong to the /pgfplots family, so you get an error that /tikz/width is unknown.



              Instead you can use pgfplotssetfoo/.style=.., then the keys are assumed to be in the /pgfplots family.



              By the way, in general it would be better to use newcommand instead of def, because then you won't accidentally overwrite existing macros.



              documentclassstandalone
              usepackagepgfplots

              begindocument

              newcommandT10
              newcommandK10

              begintikzpicture[
              Asymp/.style=red,densely dashed,thick=1pt,
              LieuReel/.style=thick=1pt
              ]


              newcommandFloorWfloor(ln(1/T)/ln(10))
              newcommandCeilWceil(ln(1/T)/ln(10))
              newcommandGdbK20*ln(K)/ln(10)
              pgfplotsset
              bode/.style=
              height=5cm,
              width=10cm,
              xlabel=$omega$,
              ylabel=$G_dB$,
              grid=both,
              axis x line=bottom,
              axis y line = left,
              ymax=(GdbK+4),
              xmax=10^(CeilW+2.2)

              beginsemilogxaxis[bode]

              addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

              addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
              addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
              endsemilogxaxis
              endtikzpicture

              enddocument





              share|improve this answer

























                5












                5








                5







                tikzstylefoo=[..] or the replacement tikzsetfoo/.style=.. looks in the /tikz family of keys, but width, height and the other axis parameters belong to the /pgfplots family, so you get an error that /tikz/width is unknown.



                Instead you can use pgfplotssetfoo/.style=.., then the keys are assumed to be in the /pgfplots family.



                By the way, in general it would be better to use newcommand instead of def, because then you won't accidentally overwrite existing macros.



                documentclassstandalone
                usepackagepgfplots

                begindocument

                newcommandT10
                newcommandK10

                begintikzpicture[
                Asymp/.style=red,densely dashed,thick=1pt,
                LieuReel/.style=thick=1pt
                ]


                newcommandFloorWfloor(ln(1/T)/ln(10))
                newcommandCeilWceil(ln(1/T)/ln(10))
                newcommandGdbK20*ln(K)/ln(10)
                pgfplotsset
                bode/.style=
                height=5cm,
                width=10cm,
                xlabel=$omega$,
                ylabel=$G_dB$,
                grid=both,
                axis x line=bottom,
                axis y line = left,
                ymax=(GdbK+4),
                xmax=10^(CeilW+2.2)

                beginsemilogxaxis[bode]

                addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

                addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
                addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
                endsemilogxaxis
                endtikzpicture

                enddocument





                share|improve this answer













                tikzstylefoo=[..] or the replacement tikzsetfoo/.style=.. looks in the /tikz family of keys, but width, height and the other axis parameters belong to the /pgfplots family, so you get an error that /tikz/width is unknown.



                Instead you can use pgfplotssetfoo/.style=.., then the keys are assumed to be in the /pgfplots family.



                By the way, in general it would be better to use newcommand instead of def, because then you won't accidentally overwrite existing macros.



                documentclassstandalone
                usepackagepgfplots

                begindocument

                newcommandT10
                newcommandK10

                begintikzpicture[
                Asymp/.style=red,densely dashed,thick=1pt,
                LieuReel/.style=thick=1pt
                ]


                newcommandFloorWfloor(ln(1/T)/ln(10))
                newcommandCeilWceil(ln(1/T)/ln(10))
                newcommandGdbK20*ln(K)/ln(10)
                pgfplotsset
                bode/.style=
                height=5cm,
                width=10cm,
                xlabel=$omega$,
                ylabel=$G_dB$,
                grid=both,
                axis x line=bottom,
                axis y line = left,
                ymax=(GdbK+4),
                xmax=10^(CeilW+2.2)

                beginsemilogxaxis[bode]

                addplot [domain=(10^(FloorW-2)):(10^(CeilW+2)),samples=50] GdbK-(10*(ln(T^2*x^2+1)))/ln(10)[LieuReel];

                addplot [domain=(10^(FloorW-2)):(1/T),samples=2] GdbK[Asymp];
                addplot [domain=(1/T):(10^(CeilW+2)),samples=2] GdbK-(10*(ln(T^2*x^2)))/ln(10)[Asymp];
                endsemilogxaxis
                endtikzpicture

                enddocument






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Feb 17 at 17:00









                Torbjørn T.Torbjørn T.

                158k13255444




                158k13255444



























                    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%2f475338%2fhow-to-give-multiple-axis-the-same-style-options%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

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay