How can I create a Continued Figure Caption?If I break up a large table so it doesn't overflow onto the next...
Copycat chess is back
New order #4: World
What causes the sudden spool-up sound from an F-16 when enabling afterburner?
What is the meaning of "of trouble" in the following sentence?
Could Giant Ground Sloths have been a good pack animal for the ancient Mayans?
Is ipsum/ipsa/ipse a third person pronoun, or can it serve other functions?
Lied on resume at previous job
Can I legally use front facing blue light in the UK?
Where else does the Shulchan Aruch quote an authority by name?
Denied boarding due to overcrowding, Sparpreis ticket. What are my rights?
Does bootstrapped regression allow for inference?
When blogging recipes, how can I support both readers who want the narrative/journey and ones who want the printer-friendly recipe?
Are objects structures and/or vice versa?
What is the command to reset a PC without deleting any files
How to deal with fear of taking dependencies
What is it called when one voice type sings a 'solo'?
How to make payment on the internet without leaving a money trail?
Crop image to path created in TikZ?
Finding files for which a command fails
How could a lack of term limits lead to a "dictatorship?"
How to answer pointed "are you quitting" questioning when I don't want them to suspect
A poker game description that does not feel gimmicky
Can the Produce Flame cantrip be used to grapple, or as an unarmed strike, in the right circumstances?
How can I plot a Farey diagram?
How can I create a Continued Figure Caption?
If I break up a large table so it doesn't overflow onto the next page how do I suppress the numberingList of Figures - how to add caption labelLaTeX numbering one figure incorrectly (Figure 2 instead of Figure 2.1)Sub-figures in multiple pages but with one figure caption and showing “continued on next page”Create a figure reference without defining a figurelist of figures and tables when there are no figures or tables?Caption in Figure only partially centeredKeep Figures RIGHT AFTER textList of Figures - ContinuedSplit caption based on a height?How should I express/typeset a caption-ish comment on a figure?
I have two figures with somehow the same caption, see the code:
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
addtocounter{figure}{-1}
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic2}
caption{(continued)}
end{figure}
Is there a way to have only the first figure referenced in the list of figures?
table-of-contents floats
add a comment |
I have two figures with somehow the same caption, see the code:
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
addtocounter{figure}{-1}
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic2}
caption{(continued)}
end{figure}
Is there a way to have only the first figure referenced in the list of figures?
table-of-contents floats
add a comment |
I have two figures with somehow the same caption, see the code:
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
addtocounter{figure}{-1}
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic2}
caption{(continued)}
end{figure}
Is there a way to have only the first figure referenced in the list of figures?
table-of-contents floats
I have two figures with somehow the same caption, see the code:
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
addtocounter{figure}{-1}
begin{figure}[!ht]centering
includegraphics[height=18cm]{pic2}
caption{(continued)}
end{figure}
Is there a way to have only the first figure referenced in the list of figures?
table-of-contents floats
table-of-contents floats
edited 19 hours ago
pluton
asked Jul 21 '12 at 21:42
plutonpluton
8,034960133
8,034960133
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
You can achieve this using the caption
package which gives you access to the ContinuedFloat
float command (to keep the figure number the same) and an additional field to the caption
which when used but left empty prevent the figure to be mentioned in the List of Figures:
documentclass{article}
usepackage{graphicx}
usepackage{caption}
begin{document}
begin{figure}[!ht]
centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
begin{figure}[!ht]
ContinuedFloat
centering
includegraphics[height=18cm]{pic2}
caption[]{caption (continued)}
end{figure}
end{document}
If you use the subfig
package as well, you can also include the graphics inside a subfloat
which would enable you to give each graphic it own caption in addition to the main figure one:
subfloat[][]{includegraphics[height=18cm]{pic2}}
this would then use an alpha
counter within the figure to differentiate between the parts. The second []
can contain the subfloat
caption.
Sorry I forgot to type the[]
to the second caption.
– ArTourter
Jul 21 '12 at 22:15
1
I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.
– Torbjørn T.
Jul 21 '12 at 22:23
Thanks @TorbjørnT. I have fixed the explanation of which package does what.
– ArTourter
Jul 21 '12 at 22:29
add a comment |
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
});
}
});
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f64231%2fhow-can-i-create-a-continued-figure-caption%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
You can achieve this using the caption
package which gives you access to the ContinuedFloat
float command (to keep the figure number the same) and an additional field to the caption
which when used but left empty prevent the figure to be mentioned in the List of Figures:
documentclass{article}
usepackage{graphicx}
usepackage{caption}
begin{document}
begin{figure}[!ht]
centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
begin{figure}[!ht]
ContinuedFloat
centering
includegraphics[height=18cm]{pic2}
caption[]{caption (continued)}
end{figure}
end{document}
If you use the subfig
package as well, you can also include the graphics inside a subfloat
which would enable you to give each graphic it own caption in addition to the main figure one:
subfloat[][]{includegraphics[height=18cm]{pic2}}
this would then use an alpha
counter within the figure to differentiate between the parts. The second []
can contain the subfloat
caption.
Sorry I forgot to type the[]
to the second caption.
– ArTourter
Jul 21 '12 at 22:15
1
I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.
– Torbjørn T.
Jul 21 '12 at 22:23
Thanks @TorbjørnT. I have fixed the explanation of which package does what.
– ArTourter
Jul 21 '12 at 22:29
add a comment |
You can achieve this using the caption
package which gives you access to the ContinuedFloat
float command (to keep the figure number the same) and an additional field to the caption
which when used but left empty prevent the figure to be mentioned in the List of Figures:
documentclass{article}
usepackage{graphicx}
usepackage{caption}
begin{document}
begin{figure}[!ht]
centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
begin{figure}[!ht]
ContinuedFloat
centering
includegraphics[height=18cm]{pic2}
caption[]{caption (continued)}
end{figure}
end{document}
If you use the subfig
package as well, you can also include the graphics inside a subfloat
which would enable you to give each graphic it own caption in addition to the main figure one:
subfloat[][]{includegraphics[height=18cm]{pic2}}
this would then use an alpha
counter within the figure to differentiate between the parts. The second []
can contain the subfloat
caption.
Sorry I forgot to type the[]
to the second caption.
– ArTourter
Jul 21 '12 at 22:15
1
I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.
– Torbjørn T.
Jul 21 '12 at 22:23
Thanks @TorbjørnT. I have fixed the explanation of which package does what.
– ArTourter
Jul 21 '12 at 22:29
add a comment |
You can achieve this using the caption
package which gives you access to the ContinuedFloat
float command (to keep the figure number the same) and an additional field to the caption
which when used but left empty prevent the figure to be mentioned in the List of Figures:
documentclass{article}
usepackage{graphicx}
usepackage{caption}
begin{document}
begin{figure}[!ht]
centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
begin{figure}[!ht]
ContinuedFloat
centering
includegraphics[height=18cm]{pic2}
caption[]{caption (continued)}
end{figure}
end{document}
If you use the subfig
package as well, you can also include the graphics inside a subfloat
which would enable you to give each graphic it own caption in addition to the main figure one:
subfloat[][]{includegraphics[height=18cm]{pic2}}
this would then use an alpha
counter within the figure to differentiate between the parts. The second []
can contain the subfloat
caption.
You can achieve this using the caption
package which gives you access to the ContinuedFloat
float command (to keep the figure number the same) and an additional field to the caption
which when used but left empty prevent the figure to be mentioned in the List of Figures:
documentclass{article}
usepackage{graphicx}
usepackage{caption}
begin{document}
begin{figure}[!ht]
centering
includegraphics[height=18cm]{pic1}
caption{caption}
end{figure}
begin{figure}[!ht]
ContinuedFloat
centering
includegraphics[height=18cm]{pic2}
caption[]{caption (continued)}
end{figure}
end{document}
If you use the subfig
package as well, you can also include the graphics inside a subfloat
which would enable you to give each graphic it own caption in addition to the main figure one:
subfloat[][]{includegraphics[height=18cm]{pic2}}
this would then use an alpha
counter within the figure to differentiate between the parts. The second []
can contain the subfloat
caption.
edited Jul 21 '12 at 23:21
answered Jul 21 '12 at 22:07
ArTourterArTourter
10.8k43651
10.8k43651
Sorry I forgot to type the[]
to the second caption.
– ArTourter
Jul 21 '12 at 22:15
1
I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.
– Torbjørn T.
Jul 21 '12 at 22:23
Thanks @TorbjørnT. I have fixed the explanation of which package does what.
– ArTourter
Jul 21 '12 at 22:29
add a comment |
Sorry I forgot to type the[]
to the second caption.
– ArTourter
Jul 21 '12 at 22:15
1
I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.
– Torbjørn T.
Jul 21 '12 at 22:23
Thanks @TorbjørnT. I have fixed the explanation of which package does what.
– ArTourter
Jul 21 '12 at 22:29
Sorry I forgot to type the
[]
to the second caption.– ArTourter
Jul 21 '12 at 22:15
Sorry I forgot to type the
[]
to the second caption.– ArTourter
Jul 21 '12 at 22:15
1
1
I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.
– Torbjørn T.
Jul 21 '12 at 22:23
I'll just delete my answer then, as yours has the same info, and the added suggestion about subfloats (and you posted first). I'll also delete my comment above.
– Torbjørn T.
Jul 21 '12 at 22:23
Thanks @TorbjørnT. I have fixed the explanation of which package does what.
– ArTourter
Jul 21 '12 at 22:29
Thanks @TorbjørnT. I have fixed the explanation of which package does what.
– ArTourter
Jul 21 '12 at 22:29
add a comment |
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.
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
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f64231%2fhow-can-i-create-a-continued-figure-caption%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
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
Required, but never shown
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
Required, but never shown
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
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