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)
Models of set theory where not every set can be linearly ordered
What would be the ideal power source for a cybernetic eye?
IndentationError when pasting code in Python 3 interpreter mode
Should I call the interviewer directly, if HR aren't responding?
Antler Helmet: Can it work?
Is 1 ppb equal to 1 μg/kg?
Storing hydrofluoric acid before the invention of plastics
How to draw this diagram using TikZ package?
What causes the vertical darker bands in my photo?
Stars Make Stars
The logistics of corpse disposal
Do I really need recursive chmod to restrict access to a folder?
When to stop saving and start investing?
Can Pao de Queijo, and similar foods, be kosher for Passover?
Why is black pepper both grey and black?
What do you call a plan that's an alternative plan in case your initial plan fails?
How do I stop a creek from eroding my steep embankment?
How to assign captions for two tables in LaTeX?
How discoverable are IPv6 addresses and AAAA names by potential attackers?
How do I mention the quality of my school without bragging
How widely used is the term Treppenwitz? Is it something that most Germans know?
Is there a concise way to say "all of the X, one of each"?
Is there a way in Ruby to make just any one out of many keyword arguments required?
How does cp -a work
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
%%%%%%%%%
renewcommandbaselinestretch1.3
%%%%%%%%%
% OR
%%%%%%%%%
usepackage[nodisplayskipstretch]setspace
setstretch1.3
%%%%%%%%%
usepackageblindtext
begindocument
newcommandmyeqn
beginequation
a quad quad quad quad quad quad quad quad quad quad quad quad quad b
endequation
blindtext footnoteA 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. footnoteYet another
myeqn
blindtext footnoteOne too many.
myeqn
enddocument
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
%%%%%%%%%
renewcommandbaselinestretch1.3
%%%%%%%%%
% OR
%%%%%%%%%
usepackage[nodisplayskipstretch]setspace
setstretch1.3
%%%%%%%%%
usepackageblindtext
begindocument
newcommandmyeqn
beginequation
a quad quad quad quad quad quad quad quad quad quad quad quad quad b
endequation
blindtext footnoteA 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. footnoteYet another
myeqn
blindtext footnoteOne too many.
myeqn
enddocument
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
%%%%%%%%%
renewcommandbaselinestretch1.3
%%%%%%%%%
% OR
%%%%%%%%%
usepackage[nodisplayskipstretch]setspace
setstretch1.3
%%%%%%%%%
usepackageblindtext
begindocument
newcommandmyeqn
beginequation
a quad quad quad quad quad quad quad quad quad quad quad quad quad b
endequation
blindtext footnoteA 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. footnoteYet another
myeqn
blindtext footnoteOne too many.
myeqn
enddocument
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
%%%%%%%%%
renewcommandbaselinestretch1.3
%%%%%%%%%
% OR
%%%%%%%%%
usepackage[nodisplayskipstretch]setspace
setstretch1.3
%%%%%%%%%
usepackageblindtext
begindocument
newcommandmyeqn
beginequation
a quad quad quad quad quad quad quad quad quad quad quad quad quad b
endequation
blindtext footnoteA 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. footnoteYet another
myeqn
blindtext footnoteOne too many.
myeqn
enddocument
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