force figures to follow each otherHow can I inject the proper amount of vertical space between captions and...

What are the advantages and disadvantages of running one shots compared to campaigns?

What is the offset in a seaplane's hull?

Does bootstrapped regression allow for inference?

I see my dog run

Where else does the Shulchan Aruch quote an authority by name?

Is a vector space a subspace of itself?

COUNT(*) or MAX(id) - which is faster?

Is there a name of the flying bionic bird?

Landing in very high winds

Does the average primeness of natural numbers tend to zero?

Calculate Levenshtein distance between two strings in Python

What does 'script /dev/null' do?

Pristine Bit Checking

Ideas for 3rd eye abilities

Why airport relocation isn't done gradually?

Information to fellow intern about hiring?

Prime joint compound before latex paint?

Manga about a female worker who got dragged into another world together with this high school girl and she was just told she's not needed anymore

Can a planet have a different gravitational pull depending on its location in orbit around its sun?

Is there a way to make member function NOT callable from constructor?

What do the Banks children have against barley water?

What happens when a metallic dragon and a chromatic dragon mate?

What is it called when one voice type sings a 'solo'?

Could a US political party gain complete control over the government by removing checks & balances?



force figures to follow each other


How can I inject the proper amount of vertical space between captions and figures?twopagepicture package refiningTable caption not appearing in PNAS document classjpg, png image positioning problemsFigures next to each otherKeep Figures RIGHT AFTER textText inside Figures appear too tiny with respect to the document and are spaced far apartFigure caption continuing on next columnSCfigure placed on own page, while figure isn'tCaptions of figures in minipage













1















Consider this example that involves two figures forming a continued float:



documentclass{report}
usepackage{graphicx}
usepackage{lipsum}
usepackage{caption}
%usepackage{float}

begin{document}
lipsum[1-6]
lipsum[4][1-2]
begin{figure}[h!p]
includegraphics[height=0.6textheight, width =0.5textwidth]{example-image-a}
caption{Examples}
end{figure}
begin{figure}[h!p]
ContinuedFloat
includegraphics[width=0.8textheight]{example-image-b}
end{figure}
lipsum[1][1-2]
lipsum[1]
end{document}


The output is



enter image description here



It is not a good idea to have text inserted among a continued float after all. How to expel anything that gets between two figures?










share|improve this question























  • You are looking for subfigure?

    – JouleV
    20 hours ago











  • @JouleV No. I am dealing with a continuous float that spans several pages.

    – Viesturs
    20 hours ago











  • Your're probably looking for the placeins package and its FloatBarrier

    – daleif
    20 hours ago











  • Or use [b!p] for the first float.

    – Ulrike Fischer
    20 hours ago






  • 1





    you don't need a float for that: you could use the (one line) capt-of package, or use [H] to stop floating or several other options.

    – David Carlisle
    18 hours ago
















1















Consider this example that involves two figures forming a continued float:



documentclass{report}
usepackage{graphicx}
usepackage{lipsum}
usepackage{caption}
%usepackage{float}

begin{document}
lipsum[1-6]
lipsum[4][1-2]
begin{figure}[h!p]
includegraphics[height=0.6textheight, width =0.5textwidth]{example-image-a}
caption{Examples}
end{figure}
begin{figure}[h!p]
ContinuedFloat
includegraphics[width=0.8textheight]{example-image-b}
end{figure}
lipsum[1][1-2]
lipsum[1]
end{document}


The output is



enter image description here



It is not a good idea to have text inserted among a continued float after all. How to expel anything that gets between two figures?










share|improve this question























  • You are looking for subfigure?

    – JouleV
    20 hours ago











  • @JouleV No. I am dealing with a continuous float that spans several pages.

    – Viesturs
    20 hours ago











  • Your're probably looking for the placeins package and its FloatBarrier

    – daleif
    20 hours ago











  • Or use [b!p] for the first float.

    – Ulrike Fischer
    20 hours ago






  • 1





    you don't need a float for that: you could use the (one line) capt-of package, or use [H] to stop floating or several other options.

    – David Carlisle
    18 hours ago














1












1








1








Consider this example that involves two figures forming a continued float:



documentclass{report}
usepackage{graphicx}
usepackage{lipsum}
usepackage{caption}
%usepackage{float}

begin{document}
lipsum[1-6]
lipsum[4][1-2]
begin{figure}[h!p]
includegraphics[height=0.6textheight, width =0.5textwidth]{example-image-a}
caption{Examples}
end{figure}
begin{figure}[h!p]
ContinuedFloat
includegraphics[width=0.8textheight]{example-image-b}
end{figure}
lipsum[1][1-2]
lipsum[1]
end{document}


The output is



enter image description here



It is not a good idea to have text inserted among a continued float after all. How to expel anything that gets between two figures?










share|improve this question














Consider this example that involves two figures forming a continued float:



documentclass{report}
usepackage{graphicx}
usepackage{lipsum}
usepackage{caption}
%usepackage{float}

begin{document}
lipsum[1-6]
lipsum[4][1-2]
begin{figure}[h!p]
includegraphics[height=0.6textheight, width =0.5textwidth]{example-image-a}
caption{Examples}
end{figure}
begin{figure}[h!p]
ContinuedFloat
includegraphics[width=0.8textheight]{example-image-b}
end{figure}
lipsum[1][1-2]
lipsum[1]
end{document}


The output is



enter image description here



It is not a good idea to have text inserted among a continued float after all. How to expel anything that gets between two figures?







floats






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked 20 hours ago









ViestursViesturs

1,96441327




1,96441327













  • You are looking for subfigure?

    – JouleV
    20 hours ago











  • @JouleV No. I am dealing with a continuous float that spans several pages.

    – Viesturs
    20 hours ago











  • Your're probably looking for the placeins package and its FloatBarrier

    – daleif
    20 hours ago











  • Or use [b!p] for the first float.

    – Ulrike Fischer
    20 hours ago






  • 1





    you don't need a float for that: you could use the (one line) capt-of package, or use [H] to stop floating or several other options.

    – David Carlisle
    18 hours ago



















  • You are looking for subfigure?

    – JouleV
    20 hours ago











  • @JouleV No. I am dealing with a continuous float that spans several pages.

    – Viesturs
    20 hours ago











  • Your're probably looking for the placeins package and its FloatBarrier

    – daleif
    20 hours ago











  • Or use [b!p] for the first float.

    – Ulrike Fischer
    20 hours ago






  • 1





    you don't need a float for that: you could use the (one line) capt-of package, or use [H] to stop floating or several other options.

    – David Carlisle
    18 hours ago

















You are looking for subfigure?

– JouleV
20 hours ago





You are looking for subfigure?

– JouleV
20 hours ago













@JouleV No. I am dealing with a continuous float that spans several pages.

– Viesturs
20 hours ago





@JouleV No. I am dealing with a continuous float that spans several pages.

– Viesturs
20 hours ago













Your're probably looking for the placeins package and its FloatBarrier

– daleif
20 hours ago





Your're probably looking for the placeins package and its FloatBarrier

– daleif
20 hours ago













Or use [b!p] for the first float.

– Ulrike Fischer
20 hours ago





Or use [b!p] for the first float.

– Ulrike Fischer
20 hours ago




1




1





you don't need a float for that: you could use the (one line) capt-of package, or use [H] to stop floating or several other options.

– David Carlisle
18 hours ago





you don't need a float for that: you could use the (one line) capt-of package, or use [H] to stop floating or several other options.

– David Carlisle
18 hours ago










0






active

oldest

votes












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%2f483756%2fforce-figures-to-follow-each-other%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes
















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%2f483756%2fforce-figures-to-follow-each-other%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

Paper upload error, “Upload failed: The top margin is 0.715 in on page 3, which is below the required...

Emraan Hashmi Filmografia | Linki zewnętrzne | Menu nawigacyjneGulshan GroverGulshan...

How can I write this formula?newline and italics added with leqWhy does widehat behave differently if I...