continue composite figure on next beamer frame

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











up vote
3
down vote

favorite












Consider this example:



documentclassbeamer 
usepackagetikzducks
setbeamertemplatecaption[numbered] % for numbering figures in beamer
usepackagesubcaption

titleThe Title
authorThe Author

begindocument

beginframeFrame 1
beginfigure
beginsubfigure0.45paperwidth
includegraphics[width=0.45paperwidth]example-image-a
caption
endsubfigure%
beginsubfigure0.45paperwidth
includegraphics[width=0.45paperwidth]example-image-b
caption
endsubfigure
caption
endfigure
endframe
beginframeFrame 2
beginfigure
beginsubfigure0.45paperwidth
includegraphics[width=0.45paperwidth]example-image-c
caption
endsubfigure%
beginsubfigure0.45paperwidth
includegraphics[width=0.45paperwidth]example-image-duck
caption
endsubfigure
caption
endfigure
endframe
enddocument


enter image description here



I am interested to continue such a Figure consisting of 4 subfigures on the next frame, so that in slide 2



  • the Figure number is the same as on slide 1


  • the numbers of subfigures are c and d.


How to accomplish that?










share|improve this question

























    up vote
    3
    down vote

    favorite












    Consider this example:



    documentclassbeamer 
    usepackagetikzducks
    setbeamertemplatecaption[numbered] % for numbering figures in beamer
    usepackagesubcaption

    titleThe Title
    authorThe Author

    begindocument

    beginframeFrame 1
    beginfigure
    beginsubfigure0.45paperwidth
    includegraphics[width=0.45paperwidth]example-image-a
    caption
    endsubfigure%
    beginsubfigure0.45paperwidth
    includegraphics[width=0.45paperwidth]example-image-b
    caption
    endsubfigure
    caption
    endfigure
    endframe
    beginframeFrame 2
    beginfigure
    beginsubfigure0.45paperwidth
    includegraphics[width=0.45paperwidth]example-image-c
    caption
    endsubfigure%
    beginsubfigure0.45paperwidth
    includegraphics[width=0.45paperwidth]example-image-duck
    caption
    endsubfigure
    caption
    endfigure
    endframe
    enddocument


    enter image description here



    I am interested to continue such a Figure consisting of 4 subfigures on the next frame, so that in slide 2



    • the Figure number is the same as on slide 1


    • the numbers of subfigures are c and d.


    How to accomplish that?










    share|improve this question























      up vote
      3
      down vote

      favorite









      up vote
      3
      down vote

      favorite











      Consider this example:



      documentclassbeamer 
      usepackagetikzducks
      setbeamertemplatecaption[numbered] % for numbering figures in beamer
      usepackagesubcaption

      titleThe Title
      authorThe Author

      begindocument

      beginframeFrame 1
      beginfigure
      beginsubfigure0.45paperwidth
      includegraphics[width=0.45paperwidth]example-image-a
      caption
      endsubfigure%
      beginsubfigure0.45paperwidth
      includegraphics[width=0.45paperwidth]example-image-b
      caption
      endsubfigure
      caption
      endfigure
      endframe
      beginframeFrame 2
      beginfigure
      beginsubfigure0.45paperwidth
      includegraphics[width=0.45paperwidth]example-image-c
      caption
      endsubfigure%
      beginsubfigure0.45paperwidth
      includegraphics[width=0.45paperwidth]example-image-duck
      caption
      endsubfigure
      caption
      endfigure
      endframe
      enddocument


      enter image description here



      I am interested to continue such a Figure consisting of 4 subfigures on the next frame, so that in slide 2



      • the Figure number is the same as on slide 1


      • the numbers of subfigures are c and d.


      How to accomplish that?










      share|improve this question













      Consider this example:



      documentclassbeamer 
      usepackagetikzducks
      setbeamertemplatecaption[numbered] % for numbering figures in beamer
      usepackagesubcaption

      titleThe Title
      authorThe Author

      begindocument

      beginframeFrame 1
      beginfigure
      beginsubfigure0.45paperwidth
      includegraphics[width=0.45paperwidth]example-image-a
      caption
      endsubfigure%
      beginsubfigure0.45paperwidth
      includegraphics[width=0.45paperwidth]example-image-b
      caption
      endsubfigure
      caption
      endfigure
      endframe
      beginframeFrame 2
      beginfigure
      beginsubfigure0.45paperwidth
      includegraphics[width=0.45paperwidth]example-image-c
      caption
      endsubfigure%
      beginsubfigure0.45paperwidth
      includegraphics[width=0.45paperwidth]example-image-duck
      caption
      endsubfigure
      caption
      endfigure
      endframe
      enddocument


      enter image description here



      I am interested to continue such a Figure consisting of 4 subfigures on the next frame, so that in slide 2



      • the Figure number is the same as on slide 1


      • the numbers of subfigures are c and d.


      How to accomplish that?







      beamer numbering






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 25 mins ago









      Viesturs

      1,3002921




      1,3002921




















          2 Answers
          2






          active

          oldest

          votes

















          up vote
          5
          down vote



          accepted










          Approach 1:



          You can use the ContinuedFloat command from the caption package (which is already loaded by the subcaption package in your example)



          documentclassbeamer 
          usepackagetikzducks
          setbeamertemplatecaption[numbered] % for numbering figures in beamer
          usepackagesubcaption

          titleThe Title
          authorThe Author

          begindocument

          beginframeFrame 1
          beginfigure
          beginsubfigure0.45paperwidth
          includegraphics[width=0.45paperwidth]example-image-a
          caption
          endsubfigure%
          beginsubfigure0.45paperwidth
          includegraphics[width=0.45paperwidth]example-image-b
          caption
          endsubfigure
          caption
          endfigure
          endframe
          beginframeFrame 2
          beginfigure
          ContinuedFloat
          beginsubfigure0.45paperwidth
          includegraphics[width=0.45paperwidth]example-image-c
          caption
          endsubfigure%
          beginsubfigure0.45paperwidth
          includegraphics[width=0.45paperwidth]example-image-duck
          caption
          endsubfigure
          caption
          endfigure
          endframe
          enddocument


          Approach 2:



          Instead of making two separate frames, you could use use overlays:



          documentclassbeamer 
          usepackagetikzducks
          setbeamertemplatecaption[numbered] % for numbering figures in beamer
          usepackagesubcaption

          titleThe Title
          authorThe Author

          begindocument

          beginframeFrame 1
          beginfigure
          beginonlyenv<1>
          beginsubfigure0.45paperwidth
          includegraphics[width=0.45paperwidth]example-image-a
          caption
          endsubfigure%
          beginsubfigure0.45paperwidth
          includegraphics[width=0.45paperwidth]example-image-b
          caption
          endsubfigure
          endonlyenv

          beginonlyenv<2>
          beginsubfigure0.45paperwidth
          includegraphics[width=0.45paperwidth]example-image-c
          caption
          endsubfigure%
          beginsubfigure0.45paperwidth
          includegraphics[width=0.45paperwidth]example-image-duck
          caption
          endsubfigure
          endonlyenv
          caption
          endfigure
          endframe
          enddocument


          enter image description here






          share|improve this answer



























            up vote
            2
            down vote













            Approach 3:



            Manually change the figure counters.



            beginframeFrame 2
            setcounterfigure0
            beginfigure
            beginsubfigure0.45paperwidth
            includegraphics[width=0.45paperwidth]example-image-c%
            setcountersubfigure2%
            caption
            end{subfigure


            enter image description here





            share




















              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%2f453944%2fcontinue-composite-figure-on-next-beamer-frame%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
              5
              down vote



              accepted










              Approach 1:



              You can use the ContinuedFloat command from the caption package (which is already loaded by the subcaption package in your example)



              documentclassbeamer 
              usepackagetikzducks
              setbeamertemplatecaption[numbered] % for numbering figures in beamer
              usepackagesubcaption

              titleThe Title
              authorThe Author

              begindocument

              beginframeFrame 1
              beginfigure
              beginsubfigure0.45paperwidth
              includegraphics[width=0.45paperwidth]example-image-a
              caption
              endsubfigure%
              beginsubfigure0.45paperwidth
              includegraphics[width=0.45paperwidth]example-image-b
              caption
              endsubfigure
              caption
              endfigure
              endframe
              beginframeFrame 2
              beginfigure
              ContinuedFloat
              beginsubfigure0.45paperwidth
              includegraphics[width=0.45paperwidth]example-image-c
              caption
              endsubfigure%
              beginsubfigure0.45paperwidth
              includegraphics[width=0.45paperwidth]example-image-duck
              caption
              endsubfigure
              caption
              endfigure
              endframe
              enddocument


              Approach 2:



              Instead of making two separate frames, you could use use overlays:



              documentclassbeamer 
              usepackagetikzducks
              setbeamertemplatecaption[numbered] % for numbering figures in beamer
              usepackagesubcaption

              titleThe Title
              authorThe Author

              begindocument

              beginframeFrame 1
              beginfigure
              beginonlyenv<1>
              beginsubfigure0.45paperwidth
              includegraphics[width=0.45paperwidth]example-image-a
              caption
              endsubfigure%
              beginsubfigure0.45paperwidth
              includegraphics[width=0.45paperwidth]example-image-b
              caption
              endsubfigure
              endonlyenv

              beginonlyenv<2>
              beginsubfigure0.45paperwidth
              includegraphics[width=0.45paperwidth]example-image-c
              caption
              endsubfigure%
              beginsubfigure0.45paperwidth
              includegraphics[width=0.45paperwidth]example-image-duck
              caption
              endsubfigure
              endonlyenv
              caption
              endfigure
              endframe
              enddocument


              enter image description here






              share|improve this answer
























                up vote
                5
                down vote



                accepted










                Approach 1:



                You can use the ContinuedFloat command from the caption package (which is already loaded by the subcaption package in your example)



                documentclassbeamer 
                usepackagetikzducks
                setbeamertemplatecaption[numbered] % for numbering figures in beamer
                usepackagesubcaption

                titleThe Title
                authorThe Author

                begindocument

                beginframeFrame 1
                beginfigure
                beginsubfigure0.45paperwidth
                includegraphics[width=0.45paperwidth]example-image-a
                caption
                endsubfigure%
                beginsubfigure0.45paperwidth
                includegraphics[width=0.45paperwidth]example-image-b
                caption
                endsubfigure
                caption
                endfigure
                endframe
                beginframeFrame 2
                beginfigure
                ContinuedFloat
                beginsubfigure0.45paperwidth
                includegraphics[width=0.45paperwidth]example-image-c
                caption
                endsubfigure%
                beginsubfigure0.45paperwidth
                includegraphics[width=0.45paperwidth]example-image-duck
                caption
                endsubfigure
                caption
                endfigure
                endframe
                enddocument


                Approach 2:



                Instead of making two separate frames, you could use use overlays:



                documentclassbeamer 
                usepackagetikzducks
                setbeamertemplatecaption[numbered] % for numbering figures in beamer
                usepackagesubcaption

                titleThe Title
                authorThe Author

                begindocument

                beginframeFrame 1
                beginfigure
                beginonlyenv<1>
                beginsubfigure0.45paperwidth
                includegraphics[width=0.45paperwidth]example-image-a
                caption
                endsubfigure%
                beginsubfigure0.45paperwidth
                includegraphics[width=0.45paperwidth]example-image-b
                caption
                endsubfigure
                endonlyenv

                beginonlyenv<2>
                beginsubfigure0.45paperwidth
                includegraphics[width=0.45paperwidth]example-image-c
                caption
                endsubfigure%
                beginsubfigure0.45paperwidth
                includegraphics[width=0.45paperwidth]example-image-duck
                caption
                endsubfigure
                endonlyenv
                caption
                endfigure
                endframe
                enddocument


                enter image description here






                share|improve this answer






















                  up vote
                  5
                  down vote



                  accepted







                  up vote
                  5
                  down vote



                  accepted






                  Approach 1:



                  You can use the ContinuedFloat command from the caption package (which is already loaded by the subcaption package in your example)



                  documentclassbeamer 
                  usepackagetikzducks
                  setbeamertemplatecaption[numbered] % for numbering figures in beamer
                  usepackagesubcaption

                  titleThe Title
                  authorThe Author

                  begindocument

                  beginframeFrame 1
                  beginfigure
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-a
                  caption
                  endsubfigure%
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-b
                  caption
                  endsubfigure
                  caption
                  endfigure
                  endframe
                  beginframeFrame 2
                  beginfigure
                  ContinuedFloat
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-c
                  caption
                  endsubfigure%
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-duck
                  caption
                  endsubfigure
                  caption
                  endfigure
                  endframe
                  enddocument


                  Approach 2:



                  Instead of making two separate frames, you could use use overlays:



                  documentclassbeamer 
                  usepackagetikzducks
                  setbeamertemplatecaption[numbered] % for numbering figures in beamer
                  usepackagesubcaption

                  titleThe Title
                  authorThe Author

                  begindocument

                  beginframeFrame 1
                  beginfigure
                  beginonlyenv<1>
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-a
                  caption
                  endsubfigure%
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-b
                  caption
                  endsubfigure
                  endonlyenv

                  beginonlyenv<2>
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-c
                  caption
                  endsubfigure%
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-duck
                  caption
                  endsubfigure
                  endonlyenv
                  caption
                  endfigure
                  endframe
                  enddocument


                  enter image description here






                  share|improve this answer












                  Approach 1:



                  You can use the ContinuedFloat command from the caption package (which is already loaded by the subcaption package in your example)



                  documentclassbeamer 
                  usepackagetikzducks
                  setbeamertemplatecaption[numbered] % for numbering figures in beamer
                  usepackagesubcaption

                  titleThe Title
                  authorThe Author

                  begindocument

                  beginframeFrame 1
                  beginfigure
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-a
                  caption
                  endsubfigure%
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-b
                  caption
                  endsubfigure
                  caption
                  endfigure
                  endframe
                  beginframeFrame 2
                  beginfigure
                  ContinuedFloat
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-c
                  caption
                  endsubfigure%
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-duck
                  caption
                  endsubfigure
                  caption
                  endfigure
                  endframe
                  enddocument


                  Approach 2:



                  Instead of making two separate frames, you could use use overlays:



                  documentclassbeamer 
                  usepackagetikzducks
                  setbeamertemplatecaption[numbered] % for numbering figures in beamer
                  usepackagesubcaption

                  titleThe Title
                  authorThe Author

                  begindocument

                  beginframeFrame 1
                  beginfigure
                  beginonlyenv<1>
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-a
                  caption
                  endsubfigure%
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-b
                  caption
                  endsubfigure
                  endonlyenv

                  beginonlyenv<2>
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-c
                  caption
                  endsubfigure%
                  beginsubfigure0.45paperwidth
                  includegraphics[width=0.45paperwidth]example-image-duck
                  caption
                  endsubfigure
                  endonlyenv
                  caption
                  endfigure
                  endframe
                  enddocument


                  enter image description here







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered 21 mins ago









                  samcarter

                  77.3k787247




                  77.3k787247




















                      up vote
                      2
                      down vote













                      Approach 3:



                      Manually change the figure counters.



                      beginframeFrame 2
                      setcounterfigure0
                      beginfigure
                      beginsubfigure0.45paperwidth
                      includegraphics[width=0.45paperwidth]example-image-c%
                      setcountersubfigure2%
                      caption
                      end{subfigure


                      enter image description here





                      share
























                        up vote
                        2
                        down vote













                        Approach 3:



                        Manually change the figure counters.



                        beginframeFrame 2
                        setcounterfigure0
                        beginfigure
                        beginsubfigure0.45paperwidth
                        includegraphics[width=0.45paperwidth]example-image-c%
                        setcountersubfigure2%
                        caption
                        end{subfigure


                        enter image description here





                        share






















                          up vote
                          2
                          down vote










                          up vote
                          2
                          down vote









                          Approach 3:



                          Manually change the figure counters.



                          beginframeFrame 2
                          setcounterfigure0
                          beginfigure
                          beginsubfigure0.45paperwidth
                          includegraphics[width=0.45paperwidth]example-image-c%
                          setcountersubfigure2%
                          caption
                          end{subfigure


                          enter image description here





                          share












                          Approach 3:



                          Manually change the figure counters.



                          beginframeFrame 2
                          setcounterfigure0
                          beginfigure
                          beginsubfigure0.45paperwidth
                          includegraphics[width=0.45paperwidth]example-image-c%
                          setcountersubfigure2%
                          caption
                          end{subfigure


                          enter image description here






                          share











                          share


                          share










                          answered 1 min ago









                          Marijn

                          6,796533




                          6,796533



























                               

                              draft saved


                              draft discarded















































                               


                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function ()
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f453944%2fcontinue-composite-figure-on-next-beamer-frame%23new-answer', 'question_page');

                              );

                              Post as a guest













































































                              Comments

                              Popular posts from this blog

                              What does second last employer means? [closed]

                              List of Gilmore Girls characters

                              Confectionery