Pagination issues when using setspace Announcing the arrival of Valued Associate #679: Cesar...
Is the Standard Deduction better than Itemized when both are the same amount?
Why does Python start at index 1 when iterating an array backwards?
What causes the vertical darker bands in my photo?
Antler Helmet: Can it work?
Why is "Consequences inflicted." not a sentence?
Can Pao de Queijo, and similar foods, be kosher for Passover?
Why is black pepper both grey and black?
What does “buco del culo” mean here?
What are 'alternative tunings' of a guitar and why would you use them? Doesn't it make it more difficult to play?
Is 1 ppb equal to 1 μg/kg?
"Seemed to had" is it correct?
Disable hyphenation for an entire paragraph
How widely used is the term Treppenwitz? Is it something that most Germans know?
Why is high voltage dangerous?
What are the pros and cons of Aerospike nosecones?
What LEGO pieces have "real-world" functionality?
If 'B is more likely given A', then 'A is more likely given B'
How do I keep my slimes from escaping their pens?
Why is "Captain Marvel" translated as male in Portugal?
Why don't the Weasley twins use magic outside of school if the Trace can only find the location of spells cast?
How can I fade player when goes inside or outside of the area?
How to find all the available tools in macOS terminal?
Did Xerox really develop the first LAN?
Letter Boxed validator
Pagination issues when using setspace
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
I have a document which was drafted using baselinestretch to set the line spacing. In order to prevent extra spacing in footnotes, I'm trying to switch to the setspace package.
Since the end result should be to compactify footnotes, I would expect the page count to either decrease or stay the same. Strangely, it increases. Part of the problem was the increase in vertical spacing around display equations. I was able to prevent that with the nodisplayskipstretch option.
The remaining problem seems to be related to a change in pagination behavior, as is visible in the following MWE:
documentclass[11pt,a4paper]{article}
%%%%%%%%%
% EITHER
%%%%%%%%%
renewcommand{baselinestretch}{1.3}
%%%%%%%%%
% OR
%%%%%%%%%
usepackage[nodisplayskipstretch]{setspace}
setstretch{1.3}
%%%%%%%%%
usepackage{blindtext}
begin{document}
newcommand{myeqn}{
begin{equation}
a quad quad quad quad quad quad quad quad quad quad quad quad quad b
end{equation}
}
blindtext footnote{A footnote}
myeqn
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam lobor-
tis facilisis sem. Nullam nec mi et neque pharetra sollicitudin. Praesent
imperdiet mi nec ante. Donec ullamcorper, felis non sodales commodo, lec-
tus velit ultrices augue, a dignissim nibh lectus placerat pede. Vivamus
nunc nunc, molestie ut, ultricies vel, semper in, velit. Ut porttitor. Prae-
sent in sapien. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. footnote{Yet another}
myeqn
blindtext footnote{One too many.}
myeqn
end{document}
Using baselinestretch, all three footnotes fit onto the first page, despite the 1.3x line spacing of the footnotes:

On the other hand, setspace breaks the page earlier, even though the line spacing of the footnotes is only 1x:

Why is this happening, and how can I fix it?
page-breaking setspace
add a comment |
I have a document which was drafted using baselinestretch to set the line spacing. In order to prevent extra spacing in footnotes, I'm trying to switch to the setspace package.
Since the end result should be to compactify footnotes, I would expect the page count to either decrease or stay the same. Strangely, it increases. Part of the problem was the increase in vertical spacing around display equations. I was able to prevent that with the nodisplayskipstretch option.
The remaining problem seems to be related to a change in pagination behavior, as is visible in the following MWE:
documentclass[11pt,a4paper]{article}
%%%%%%%%%
% EITHER
%%%%%%%%%
renewcommand{baselinestretch}{1.3}
%%%%%%%%%
% OR
%%%%%%%%%
usepackage[nodisplayskipstretch]{setspace}
setstretch{1.3}
%%%%%%%%%
usepackage{blindtext}
begin{document}
newcommand{myeqn}{
begin{equation}
a quad quad quad quad quad quad quad quad quad quad quad quad quad b
end{equation}
}
blindtext footnote{A footnote}
myeqn
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam lobor-
tis facilisis sem. Nullam nec mi et neque pharetra sollicitudin. Praesent
imperdiet mi nec ante. Donec ullamcorper, felis non sodales commodo, lec-
tus velit ultrices augue, a dignissim nibh lectus placerat pede. Vivamus
nunc nunc, molestie ut, ultricies vel, semper in, velit. Ut porttitor. Prae-
sent in sapien. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. footnote{Yet another}
myeqn
blindtext footnote{One too many.}
myeqn
end{document}
Using baselinestretch, all three footnotes fit onto the first page, despite the 1.3x line spacing of the footnotes:

On the other hand, setspace breaks the page earlier, even though the line spacing of the footnotes is only 1x:

Why is this happening, and how can I fix it?
page-breaking setspace
add a comment |
I have a document which was drafted using baselinestretch to set the line spacing. In order to prevent extra spacing in footnotes, I'm trying to switch to the setspace package.
Since the end result should be to compactify footnotes, I would expect the page count to either decrease or stay the same. Strangely, it increases. Part of the problem was the increase in vertical spacing around display equations. I was able to prevent that with the nodisplayskipstretch option.
The remaining problem seems to be related to a change in pagination behavior, as is visible in the following MWE:
documentclass[11pt,a4paper]{article}
%%%%%%%%%
% EITHER
%%%%%%%%%
renewcommand{baselinestretch}{1.3}
%%%%%%%%%
% OR
%%%%%%%%%
usepackage[nodisplayskipstretch]{setspace}
setstretch{1.3}
%%%%%%%%%
usepackage{blindtext}
begin{document}
newcommand{myeqn}{
begin{equation}
a quad quad quad quad quad quad quad quad quad quad quad quad quad b
end{equation}
}
blindtext footnote{A footnote}
myeqn
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam lobor-
tis facilisis sem. Nullam nec mi et neque pharetra sollicitudin. Praesent
imperdiet mi nec ante. Donec ullamcorper, felis non sodales commodo, lec-
tus velit ultrices augue, a dignissim nibh lectus placerat pede. Vivamus
nunc nunc, molestie ut, ultricies vel, semper in, velit. Ut porttitor. Prae-
sent in sapien. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. footnote{Yet another}
myeqn
blindtext footnote{One too many.}
myeqn
end{document}
Using baselinestretch, all three footnotes fit onto the first page, despite the 1.3x line spacing of the footnotes:

On the other hand, setspace breaks the page earlier, even though the line spacing of the footnotes is only 1x:

Why is this happening, and how can I fix it?
page-breaking setspace
I have a document which was drafted using baselinestretch to set the line spacing. In order to prevent extra spacing in footnotes, I'm trying to switch to the setspace package.
Since the end result should be to compactify footnotes, I would expect the page count to either decrease or stay the same. Strangely, it increases. Part of the problem was the increase in vertical spacing around display equations. I was able to prevent that with the nodisplayskipstretch option.
The remaining problem seems to be related to a change in pagination behavior, as is visible in the following MWE:
documentclass[11pt,a4paper]{article}
%%%%%%%%%
% EITHER
%%%%%%%%%
renewcommand{baselinestretch}{1.3}
%%%%%%%%%
% OR
%%%%%%%%%
usepackage[nodisplayskipstretch]{setspace}
setstretch{1.3}
%%%%%%%%%
usepackage{blindtext}
begin{document}
newcommand{myeqn}{
begin{equation}
a quad quad quad quad quad quad quad quad quad quad quad quad quad b
end{equation}
}
blindtext footnote{A footnote}
myeqn
Lorem ipsum dolor sit amet, consectetuer adipiscing elit. Etiam lobor-
tis facilisis sem. Nullam nec mi et neque pharetra sollicitudin. Praesent
imperdiet mi nec ante. Donec ullamcorper, felis non sodales commodo, lec-
tus velit ultrices augue, a dignissim nibh lectus placerat pede. Vivamus
nunc nunc, molestie ut, ultricies vel, semper in, velit. Ut porttitor. Prae-
sent in sapien. Lorem ipsum dolor sit amet, consectetuer adipiscing elit. footnote{Yet another}
myeqn
blindtext footnote{One too many.}
myeqn
end{document}
Using baselinestretch, all three footnotes fit onto the first page, despite the 1.3x line spacing of the footnotes:

On the other hand, setspace breaks the page earlier, even though the line spacing of the footnotes is only 1x:

Why is this happening, and how can I fix it?
page-breaking setspace
page-breaking setspace
asked 2 mins ago
Ben MaresBen Mares
412
412
add a comment |
add a comment |
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
});
}
});
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%2f485059%2fpagination-issues-when-using-setspace%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
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%2f485059%2fpagination-issues-when-using-setspace%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