Flipping Image Vertically

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











up vote
4
down vote

favorite












I am trying to create a template with a border round the edges but struggling to flip an image to fit in.



documentclassarticle
usepackagetikz,blindtext
inputinkscape.tex
titleTable 1
author
begindocument
maketitle
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east) ornamentscale=1;
endtikzpicture
begintikzpicture[remember picture,overlay]
node[below left] at ([xshift=5cm,yshift=-1cm]current page.north west) ornamentscale=1;
endtikzpicture
blindtext
enddocument


Using the above code with this file https://gist.github.com/anonymous/9035028







share|improve this question

























    up vote
    4
    down vote

    favorite












    I am trying to create a template with a border round the edges but struggling to flip an image to fit in.



    documentclassarticle
    usepackagetikz,blindtext
    inputinkscape.tex
    titleTable 1
    author
    begindocument
    maketitle
    begintikzpicture[remember picture,overlay]
    node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east) ornamentscale=1;
    endtikzpicture
    begintikzpicture[remember picture,overlay]
    node[below left] at ([xshift=5cm,yshift=-1cm]current page.north west) ornamentscale=1;
    endtikzpicture
    blindtext
    enddocument


    Using the above code with this file https://gist.github.com/anonymous/9035028







    share|improve this question























      up vote
      4
      down vote

      favorite









      up vote
      4
      down vote

      favorite











      I am trying to create a template with a border round the edges but struggling to flip an image to fit in.



      documentclassarticle
      usepackagetikz,blindtext
      inputinkscape.tex
      titleTable 1
      author
      begindocument
      maketitle
      begintikzpicture[remember picture,overlay]
      node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east) ornamentscale=1;
      endtikzpicture
      begintikzpicture[remember picture,overlay]
      node[below left] at ([xshift=5cm,yshift=-1cm]current page.north west) ornamentscale=1;
      endtikzpicture
      blindtext
      enddocument


      Using the above code with this file https://gist.github.com/anonymous/9035028







      share|improve this question













      I am trying to create a template with a border round the edges but struggling to flip an image to fit in.



      documentclassarticle
      usepackagetikz,blindtext
      inputinkscape.tex
      titleTable 1
      author
      begindocument
      maketitle
      begintikzpicture[remember picture,overlay]
      node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east) ornamentscale=1;
      endtikzpicture
      begintikzpicture[remember picture,overlay]
      node[below left] at ([xshift=5cm,yshift=-1cm]current page.north west) ornamentscale=1;
      endtikzpicture
      blindtext
      enddocument


      Using the above code with this file https://gist.github.com/anonymous/9035028









      share|improve this question












      share|improve this question




      share|improve this question








      edited Aug 6 at 12:04









      Raaja

      1,0981521




      1,0981521









      asked Aug 6 at 12:00









      Megan

      211




      211




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          4
          down vote













          You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.



          documentclassarticle
          usepackagetikz,blindtext
          inputinkscape.tex
          newsaveboxOrnament
          saveboxOrnamentornamentscale=1
          titleTable 1
          author
          begindocument
          maketitle
          begintikzpicture[remember picture,overlay]
          node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
          useboxOrnament;
          endtikzpicture
          begintikzpicture[remember picture,overlay]
          node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
          useboxOrnament;
          endtikzpicture
          blindtext
          enddocument


          enter image description here



          A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.



          documentclassarticle
          usepackagetikz,blindtext
          inputinkscape.tex
          newsaveboxOrnament
          saveboxOrnamentornamentscale=1
          titleTable 1
          author
          begindocument
          maketitle
          begintikzpicture[remember picture,overlay]
          node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
          useboxOrnament;
          endtikzpicture
          begintikzpicture[remember picture,overlay]
          node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
          useboxOrnament;
          endtikzpicture
          blindtext
          enddocument


          enter image description here






          share|improve this answer




























            up vote
            3
            down vote













            I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results



             documentclassarticle
            usepackagetikz,blindtext
            inputinkscape.tex
            titleTable 1
            author
            begindocument
            maketitle
            begintikzpicture[remember picture,overlay]
            node[below left] at (current page.north east) ornamentscale=1;
            node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
            endtikzpicture
            blindtext
            enddocument


            You can play with (x,y) shifts to align as you want.



            enter image description here






            share|improve this answer





















            • +1 for using reflectbox and rotatebox, but one should really not nest tikzpictures.
              – marmot
              Aug 6 at 14:16










            • @marmot New to tikz :D But will keep that in mind :)
              – Raaja
              Aug 6 at 14:18










            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',
            convertImagesToLinks: false,
            noModals: false,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            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%2f444819%2fflipping-image-vertically%23new-answer', 'question_page');

            );

            Post as a guest






























            2 Answers
            2






            active

            oldest

            votes








            2 Answers
            2






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes








            up vote
            4
            down vote













            You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.



            documentclassarticle
            usepackagetikz,blindtext
            inputinkscape.tex
            newsaveboxOrnament
            saveboxOrnamentornamentscale=1
            titleTable 1
            author
            begindocument
            maketitle
            begintikzpicture[remember picture,overlay]
            node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
            useboxOrnament;
            endtikzpicture
            begintikzpicture[remember picture,overlay]
            node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
            useboxOrnament;
            endtikzpicture
            blindtext
            enddocument


            enter image description here



            A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.



            documentclassarticle
            usepackagetikz,blindtext
            inputinkscape.tex
            newsaveboxOrnament
            saveboxOrnamentornamentscale=1
            titleTable 1
            author
            begindocument
            maketitle
            begintikzpicture[remember picture,overlay]
            node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
            useboxOrnament;
            endtikzpicture
            begintikzpicture[remember picture,overlay]
            node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
            useboxOrnament;
            endtikzpicture
            blindtext
            enddocument


            enter image description here






            share|improve this answer

























              up vote
              4
              down vote













              You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.



              documentclassarticle
              usepackagetikz,blindtext
              inputinkscape.tex
              newsaveboxOrnament
              saveboxOrnamentornamentscale=1
              titleTable 1
              author
              begindocument
              maketitle
              begintikzpicture[remember picture,overlay]
              node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
              useboxOrnament;
              endtikzpicture
              begintikzpicture[remember picture,overlay]
              node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
              useboxOrnament;
              endtikzpicture
              blindtext
              enddocument


              enter image description here



              A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.



              documentclassarticle
              usepackagetikz,blindtext
              inputinkscape.tex
              newsaveboxOrnament
              saveboxOrnamentornamentscale=1
              titleTable 1
              author
              begindocument
              maketitle
              begintikzpicture[remember picture,overlay]
              node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
              useboxOrnament;
              endtikzpicture
              begintikzpicture[remember picture,overlay]
              node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
              useboxOrnament;
              endtikzpicture
              blindtext
              enddocument


              enter image description here






              share|improve this answer























                up vote
                4
                down vote










                up vote
                4
                down vote









                You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.



                documentclassarticle
                usepackagetikz,blindtext
                inputinkscape.tex
                newsaveboxOrnament
                saveboxOrnamentornamentscale=1
                titleTable 1
                author
                begindocument
                maketitle
                begintikzpicture[remember picture,overlay]
                node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
                useboxOrnament;
                endtikzpicture
                begintikzpicture[remember picture,overlay]
                node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
                useboxOrnament;
                endtikzpicture
                blindtext
                enddocument


                enter image description here



                A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.



                documentclassarticle
                usepackagetikz,blindtext
                inputinkscape.tex
                newsaveboxOrnament
                saveboxOrnamentornamentscale=1
                titleTable 1
                author
                begindocument
                maketitle
                begintikzpicture[remember picture,overlay]
                node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
                useboxOrnament;
                endtikzpicture
                begintikzpicture[remember picture,overlay]
                node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
                useboxOrnament;
                endtikzpicture
                blindtext
                enddocument


                enter image description here






                share|improve this answer













                You are nesting tikzpicture, which one should not do. To avoid it, you can use a savebox. As for your question, you can then simply use xscale=-1.



                documentclassarticle
                usepackagetikz,blindtext
                inputinkscape.tex
                newsaveboxOrnament
                saveboxOrnamentornamentscale=1
                titleTable 1
                author
                begindocument
                maketitle
                begintikzpicture[remember picture,overlay]
                node[below left] at ([xshift=-1cm,yshift=-1cm]current page.north east)
                useboxOrnament;
                endtikzpicture
                begintikzpicture[remember picture,overlay]
                node[below left,xscale=-1] at ([xshift=1cm,yshift=-1cm]current page.north west)
                useboxOrnament;
                endtikzpicture
                blindtext
                enddocument


                enter image description here



                A neat side-effect of this is that the coordinates are now symmetric [xshift=-1cm,yshift=-1cm] vs.[xshift=1cm,yshift=-1cm]`, and it is easy to avoid the overlap.



                documentclassarticle
                usepackagetikz,blindtext
                inputinkscape.tex
                newsaveboxOrnament
                saveboxOrnamentornamentscale=1
                titleTable 1
                author
                begindocument
                maketitle
                begintikzpicture[remember picture,overlay]
                node[below left] at ([xshift=-0.25cm,yshift=-1cm]current page.north east)
                useboxOrnament;
                endtikzpicture
                begintikzpicture[remember picture,overlay]
                node[below left,xscale=-1] at ([xshift=0.25cm,yshift=-1cm]current page.north west)
                useboxOrnament;
                endtikzpicture
                blindtext
                enddocument


                enter image description here







                share|improve this answer













                share|improve this answer



                share|improve this answer











                answered Aug 6 at 14:14









                marmot

                48.6k34395




                48.6k34395




















                    up vote
                    3
                    down vote













                    I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results



                     documentclassarticle
                    usepackagetikz,blindtext
                    inputinkscape.tex
                    titleTable 1
                    author
                    begindocument
                    maketitle
                    begintikzpicture[remember picture,overlay]
                    node[below left] at (current page.north east) ornamentscale=1;
                    node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
                    endtikzpicture
                    blindtext
                    enddocument


                    You can play with (x,y) shifts to align as you want.



                    enter image description here






                    share|improve this answer





















                    • +1 for using reflectbox and rotatebox, but one should really not nest tikzpictures.
                      – marmot
                      Aug 6 at 14:16










                    • @marmot New to tikz :D But will keep that in mind :)
                      – Raaja
                      Aug 6 at 14:18














                    up vote
                    3
                    down vote













                    I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results



                     documentclassarticle
                    usepackagetikz,blindtext
                    inputinkscape.tex
                    titleTable 1
                    author
                    begindocument
                    maketitle
                    begintikzpicture[remember picture,overlay]
                    node[below left] at (current page.north east) ornamentscale=1;
                    node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
                    endtikzpicture
                    blindtext
                    enddocument


                    You can play with (x,y) shifts to align as you want.



                    enter image description here






                    share|improve this answer





















                    • +1 for using reflectbox and rotatebox, but one should really not nest tikzpictures.
                      – marmot
                      Aug 6 at 14:16










                    • @marmot New to tikz :D But will keep that in mind :)
                      – Raaja
                      Aug 6 at 14:18












                    up vote
                    3
                    down vote










                    up vote
                    3
                    down vote









                    I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results



                     documentclassarticle
                    usepackagetikz,blindtext
                    inputinkscape.tex
                    titleTable 1
                    author
                    begindocument
                    maketitle
                    begintikzpicture[remember picture,overlay]
                    node[below left] at (current page.north east) ornamentscale=1;
                    node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
                    endtikzpicture
                    blindtext
                    enddocument


                    You can play with (x,y) shifts to align as you want.



                    enter image description here






                    share|improve this answer













                    I hope this helps you. You can simply use reflectbox along with rotatebox to achieve your results



                     documentclassarticle
                    usepackagetikz,blindtext
                    inputinkscape.tex
                    titleTable 1
                    author
                    begindocument
                    maketitle
                    begintikzpicture[remember picture,overlay]
                    node[below left] at (current page.north east) ornamentscale=1;
                    node[below left] at ([xshift=-10cm,yshift=0cm]current page.north east) reflectboxrotatebox[origin=c]360ornamentscale=1;
                    endtikzpicture
                    blindtext
                    enddocument


                    You can play with (x,y) shifts to align as you want.



                    enter image description here







                    share|improve this answer













                    share|improve this answer



                    share|improve this answer











                    answered Aug 6 at 12:17









                    Raaja

                    1,0981521




                    1,0981521











                    • +1 for using reflectbox and rotatebox, but one should really not nest tikzpictures.
                      – marmot
                      Aug 6 at 14:16










                    • @marmot New to tikz :D But will keep that in mind :)
                      – Raaja
                      Aug 6 at 14:18
















                    • +1 for using reflectbox and rotatebox, but one should really not nest tikzpictures.
                      – marmot
                      Aug 6 at 14:16










                    • @marmot New to tikz :D But will keep that in mind :)
                      – Raaja
                      Aug 6 at 14:18















                    +1 for using reflectbox and rotatebox, but one should really not nest tikzpictures.
                    – marmot
                    Aug 6 at 14:16




                    +1 for using reflectbox and rotatebox, but one should really not nest tikzpictures.
                    – marmot
                    Aug 6 at 14:16












                    @marmot New to tikz :D But will keep that in mind :)
                    – Raaja
                    Aug 6 at 14:18




                    @marmot New to tikz :D But will keep that in mind :)
                    – Raaja
                    Aug 6 at 14:18












                     

                    draft saved


                    draft discarded


























                     


                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f444819%2fflipping-image-vertically%23new-answer', 'question_page');

                    );

                    Post as a guest













































































                    Popular posts from this blog

                    Python Lists

                    Aion

                    JavaScript Array Iteration Methods