avoid a single figure on one page with lots of empty spaceHow to influence the position of float environments...
Has there ever been an airliner design involving reducing generator load by installing solar panels?
Why does Kotter return in Welcome Back Kotter?
Does detail obscure or enhance action?
Intersection point of 2 lines defined by 2 points each
Java Casting: Java 11 throws LambdaConversionException while 1.8 does not
Was any UN Security Council vote triple-vetoed?
infared filters v nd
What's that red-plus icon near a text?
Which country benefited the most from UN Security Council vetoes?
What's the output of a record needle playing an out-of-speed record
LaTeX: Why are digits allowed in environments, but forbidden in commands?
Modeling an IP Address
Character reincarnated...as a snail
Can you really stack all of this on an Opportunity Attack?
How does one intimidate enemies without having the capacity for violence?
Is it possible to do 50 km distance without any previous training?
Add text to same line using sed
Is it tax fraud for an individual to declare non-taxable revenue as taxable income? (US tax laws)
Why is Minecraft giving an OpenGL error?
Is it legal for company to use my work email to pretend I still work there?
What's the point of deactivating Num Lock on login screens?
What does the "remote control" for a QF-4 look like?
How much RAM could one put in a typical 80386 setup?
Do infinite dimensional systems make sense?
avoid a single figure on one page with lots of empty space
How to influence the position of float environments like figure and table in LaTeX?avoid that figure gets its own pageavoid that figure gets its own pageHow to define the default vertical distance between nodes?Table caption not appearing in PNAS document classLibertine fonts: spaces in PDF filesAdjusting the width of a displaymath environmentEmpty space under a figureKeep Figures RIGHT AFTER textAvoid blank space after a FigureVertical spacing between arrow and caption with unicode-mathCan a figure/box/table overflow into the margin deliberately and with wrapped text?
This script:
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
produces the output:
There is a lot of empty space around the figure that could be economically filled with text. How to solve this problem?
spacing floats
add a comment |
This script:
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
produces the output:
There is a lot of empty space around the figure that could be economically filled with text. How to solve this problem?
spacing floats
1
I think increasing thefloatpagefraction
(default=0.5
) should do:renewcommand{floatpagefraction}{0.8}
...
– Phelype Oleinik
8 hours ago
1
Have a look at this question: avoid that figure gets its own page, especially the last answer, for more information.
– barbara beeton
8 hours ago
David showed it. You have to understand how the floats are placed. There is real "must read" about here. The you can fill the entire page with text without leaving a free space. Now the question is: why the hell? You spend the same number of pages and the text is worse distributed, and the figure is left in a less prominent place. Not an improvement, IMHO.
– Fran
7 hours ago
add a comment |
This script:
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
produces the output:
There is a lot of empty space around the figure that could be economically filled with text. How to solve this problem?
spacing floats
This script:
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
produces the output:
There is a lot of empty space around the figure that could be economically filled with text. How to solve this problem?
spacing floats
spacing floats
asked 8 hours ago
ViestursViesturs
1,93141127
1,93141127
1
I think increasing thefloatpagefraction
(default=0.5
) should do:renewcommand{floatpagefraction}{0.8}
...
– Phelype Oleinik
8 hours ago
1
Have a look at this question: avoid that figure gets its own page, especially the last answer, for more information.
– barbara beeton
8 hours ago
David showed it. You have to understand how the floats are placed. There is real "must read" about here. The you can fill the entire page with text without leaving a free space. Now the question is: why the hell? You spend the same number of pages and the text is worse distributed, and the figure is left in a less prominent place. Not an improvement, IMHO.
– Fran
7 hours ago
add a comment |
1
I think increasing thefloatpagefraction
(default=0.5
) should do:renewcommand{floatpagefraction}{0.8}
...
– Phelype Oleinik
8 hours ago
1
Have a look at this question: avoid that figure gets its own page, especially the last answer, for more information.
– barbara beeton
8 hours ago
David showed it. You have to understand how the floats are placed. There is real "must read" about here. The you can fill the entire page with text without leaving a free space. Now the question is: why the hell? You spend the same number of pages and the text is worse distributed, and the figure is left in a less prominent place. Not an improvement, IMHO.
– Fran
7 hours ago
1
1
I think increasing the
floatpagefraction
(default=0.5
) should do: renewcommand{floatpagefraction}{0.8}
...– Phelype Oleinik
8 hours ago
I think increasing the
floatpagefraction
(default=0.5
) should do: renewcommand{floatpagefraction}{0.8}
...– Phelype Oleinik
8 hours ago
1
1
Have a look at this question: avoid that figure gets its own page, especially the last answer, for more information.
– barbara beeton
8 hours ago
Have a look at this question: avoid that figure gets its own page, especially the last answer, for more information.
– barbara beeton
8 hours ago
David showed it. You have to understand how the floats are placed. There is real "must read" about here. The you can fill the entire page with text without leaving a free space. Now the question is: why the hell? You spend the same number of pages and the text is worse distributed, and the figure is left in a less prominent place. Not an improvement, IMHO.
– Fran
7 hours ago
David showed it. You have to understand how the floats are placed. There is real "must read" about here. The you can fill the entire page with text without leaving a free space. Now the question is: why the hell? You spend the same number of pages and the text is worse distributed, and the figure is left in a less prominent place. Not an improvement, IMHO.
– Fran
7 hours ago
add a comment |
1 Answer
1
active
oldest
votes
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}[t]
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
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%2f483413%2favoid-a-single-figure-on-one-page-with-lots-of-empty-space%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
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}[t]
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
add a comment |
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}[t]
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
add a comment |
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}[t]
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
documentclass{article}
usepackage{lipsum}
usepackage{graphicx}
usepackage{subfig}
begin{document}
lipsum[1-5]
begin{figure}[t]
centering
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-a}
}\
subfloat[]{
includegraphics[width=0.5textwidth]{example-image-b}
}
end{figure}
lipsum[6-10]
end{document}
answered 8 hours ago
David CarlisleDavid Carlisle
497k4111441891
497k4111441891
add a comment |
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%2f483413%2favoid-a-single-figure-on-one-page-with-lots-of-empty-space%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
1
I think increasing the
floatpagefraction
(default=0.5
) should do:renewcommand{floatpagefraction}{0.8}
...– Phelype Oleinik
8 hours ago
1
Have a look at this question: avoid that figure gets its own page, especially the last answer, for more information.
– barbara beeton
8 hours ago
David showed it. You have to understand how the floats are placed. There is real "must read" about here. The you can fill the entire page with text without leaving a free space. Now the question is: why the hell? You spend the same number of pages and the text is worse distributed, and the figure is left in a less prominent place. Not an improvement, IMHO.
– Fran
7 hours ago