continue composite figure on next beamer frame
Clash 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
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
add a comment |Â
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
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
add a comment |Â
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
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
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
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
beamer numbering
asked 25 mins ago
Viesturs
1,3002921
1,3002921
add a comment |Â
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
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
answered 21 mins ago


samcarter
77.3k787247
77.3k787247
add a comment |Â
add a comment |Â
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
add a comment |Â
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
add a comment |Â
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
Approach 3:
Manually change the figure counters.
beginframeFrame 2
setcounterfigure0
beginfigure
beginsubfigure0.45paperwidth
includegraphics[width=0.45paperwidth]example-image-c%
setcountersubfigure2%
caption
end{subfigure
answered 1 min ago
Marijn
6,796533
6,796533
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password