Pagination issues when using setspace Announcing the arrival of Valued Associate #679: Cesar...
How to find all the available tools in macOS terminal?
How to draw this diagram using TikZ package?
What does “buco del culo” mean here?
What makes black pepper strong or mild?
How do I mention the quality of my school without bragging
When is phishing education going too far?
Can Pao de Queijo, and similar foods, be kosher for Passover?
When to stop saving and start investing?
How to deal with a team lead who never gives me credit?
Examples of mediopassive verb constructions
Bonus calculation: Am I making a mountain out of a molehill?
If Jon Snow became King of the Seven Kingdoms what would his regnal number be?
Should gear shift center itself while in neutral?
How to assign captions for two tables in LaTeX?
Do I really need recursive chmod to restrict access to a folder?
Disable hyphenation for an entire paragraph
Java 8 stream max() function argument type Comparator vs Comparable
Withdrew £2800, but only £2000 shows as withdrawn on online banking; what are my obligations?
What are the motives behind Cersei's orders given to Bronn?
What's the purpose of writing one's academic bio in 3rd person?
How can I fade player when goes inside or outside of the area?
WAN encapsulation
Did Xerox really develop the first LAN?
What is a Meta algorithm?
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