{setspace} is a package providing support for setting the spacing between lines in a document, e.g. allowing double-spacing.
5
votes
1answer
32 views
\setstretch and fixme package. How to reset stretch to 1 for fixmes?
I am using
\usepackage{setspace}
\setstretch{1.5}
\usepackage[status=draft,layout=margin]{fixme}
in my document preamble. The notes are therefore also set with 1.5 stretch. How can I avoid that?
3
votes
2answers
63 views
Changing line spacing within a new command
I have a command written as follows:
\documentclass[12pt]{book}
\usepackage{setspace}
\newcommand{\statshyp}[2]{\noindent \hangindent=1cm \hangafter=0
\begin{singlespace*}
\textbf{#1}: \emph{#2}
...
0
votes
0answers
48 views
`\setspace` and `\enumerate`
Forgive the long listing, worried about the behavior of some packages. I am looking to fix the space between text and enumerated list as I switch between \singlespace and \doublespace. Note the ...
5
votes
1answer
145 views
Double-spaced paragraphs, single-spaced headers
I am using the "setspace" package to format my document with double spacing (requirement for an assignment).
One of my section headers takes up two lines, though, and these section headers look better ...
0
votes
0answers
52 views
Different line spacing in textmode and mathmode
At first I was using \linespread{2} but my research told me to use the package setspace. I did this and everything is fine however in align* environments, my equations get double spaced also which ...
10
votes
1answer
175 views
How to (automatically) determine a visually appealing line spread?
I'm writing a "larger" document with a lot of mathematics. Occasionally, I use a notation like
p \xrightarrow{\mathcal A^X} q
which produces tall lines. LaTeX increases the line spread for those ...
7
votes
2answers
108 views
How can I stop the “setspace” package from processing a “doublespacing” documentclass option?
LaTeX does not behave as I expected with the following files.
First file:
\documentclass[doublespacing]{article}
\usepackage{lipsum} % for dummy text only
\begin{document}
\lipsum
\end{document}
...
3
votes
0answers
38 views
How to improve row vector appearance inside paragraph? [duplicate]
Possible Duplicate:
Parentheses size around matrix
When using a row vector inside paragraph with double line spacing the output looks ugly (imo) because the brackets are too tall and much ...
5
votes
2answers
67 views
Vertical spacing of text changes in a macro depending on input
I defined a keynote macro to insert key ideas in my document using varwidth. The document is in \doublespacing and I have defined \singlespacing inside my macro. However, the correct spacing is ...
5
votes
0answers
55 views
Spurious whitespace in caption [duplicate]
Possible Duplicate:
Why the end-of-line % in macro definitions?
I am not sure what is happening with this MWE.
First the problem: You can clearly see the whitespace between the label and ...
10
votes
1answer
135 views
Controlling space after heading when doublespaced
I'm writing a document with both doublespaced and singlespaced sections. I'm using the setspace package to do the doublespacing and the koma-script report class for the document. In the double spaced ...
4
votes
1answer
64 views
footmisc has to be loaded after setspace - Why?
If footmisc package is loaded before the setspace package, then it doesn't work. Though I don't need a work around, since this is easy to incorporate in a document, I just thought that I should share ...
2
votes
2answers
52 views
change space to only a part of the document [duplicate]
Possible Duplicate:
Change line spacing of a page and size police inside the document
I created a document using book class and set the space using
\usepackage{setspace}
\onehalfspacing
...
3
votes
1answer
247 views
Number of lines in double spacing (compared to Word)
I am a newbie to LaTeX. I noticed that my document is almost a page longer in Word compared to LaTeX. (~7.25 in latex, ~8.25 in Word). This seems to be because my Word document has 23 lines per page, ...
10
votes
3answers
168 views
setspace and quoting environment result in superfluous empty line
I was trying to set up the quoting environment by the package of the same name, which included single line spacing for block quotes as opposed to one and a half line spacing for normal text. The ...
8
votes
1answer
102 views
Doublespacing is moving my page number
I'm using the KOMA-Script report scrreprt to typeset my PhD thesis and the graduate school requires that the main text be double spaced and that the page number be in the top right. When I enable ...
4
votes
1answer
136 views
Strange interaction between amsmath and setspace
Compiling the MWE below, you will observe in the output the following phenomenon (you may have to zoom in):
Comment amsmath out. Then, the spacing beteen lines is such that the subindex of the ...
2
votes
2answers
99 views
How to doublespace a sidewaystable using setspace?
As a follow-up to a previous question, How to doublespace a table using setspace?, I found that the solution is not compatible with the sidewaystable environment defined in the rotating package.
I ...
5
votes
1answer
324 views
How to doublespace a table using setspace?
I have used setspace with \spacing{1.9} to meet publisher specifications of "3 lines per inch or 12 lines per 10 cm", but it does not affect tables, although the publisher has requested that the ...
3
votes
1answer
275 views
Parentheses size around matrix
I would like to get 1:n matrix with \left, \right size parentheses. Default size looks not so good. Now I have
$\begin{pmatrix}
f_0 & \ldots & f_L
\end{pmatrix}^T$
The view I get
I can ...
2
votes
1answer
160 views
Draft footnote changes position
I use the prelim2e package to mark a document as a draft. This package puts a draft line below the normal footer that contains for example Preliminary version – May 15, 2012.
Usually this draft line ...
4
votes
1answer
135 views
Inconsistent behavior of setspace package in ctable doinside
This is odd:
\ctable[
doinside=\singlespacing,
%doinside=\setstretch{1}
]
{lp{5cm}}
{}
{\FL
Blubb & Blobb simply dummy text of the printing and typesetting industry. Lorem Ipsum
has been the ...
2
votes
1answer
122 views
Spaces around display math when using setspace
I'm using setspace package in the following way:
\usepackage{setspace}
\onehalfspacing
It works well, mostly very nice result, but the spaces around display math formulae had enlarged too and now ...
7
votes
1answer
352 views
How to change line spacing in footnotes?
I have a document with line spacing 1.5. But I want the footnotes line spacing 1. How could I do this? I tried the package setspaces but does not allow me this option.
6
votes
2answers
3k views
How do I double-space my abstract in LaTeX?
I'm finishing up my undergrad thesis, and I have to double-space my abstract. I tried using \begin{doublespace} and \doublespacing, but neither have worked, I assume because the abstract environment ...
3
votes
2answers
2k views
How can I single-space text within entries of my table of contents?
I am writing my dissertation. My university requires that the document be double-spaced; I am using the setspace package to do this. However, I must single-space entries of the table of contents ...
7
votes
2answers
2k views
Using \textsuperscript to put commas between consecutive footnotes in amsart document
I'm trying to insert a comma between consecutive footnote markers in an amsart document. I'm trying to do this without using the footmisc package, since for some reason it causes the footnotes in my ...
7
votes
1answer
544 views
Footnote indentation with amsart and setspace
A follow-up to this question: amsart, setspace, and footnotes
As explained there, using the setspace package in an amsart document removes the indentation in the first lines of footnotes. This is ...
3
votes
2answers
513 views
How to set default line spacing in a .cls file?
I am writing a document class where I want to set the default line spacing to be 1.5. How can I use the setspace package to achieve this? More particularly, where in my .cls file should I mention ...
2
votes
1answer
493 views
Overfull vbox with scrbook and setspacing
The following MWE gives me a lot of badbox warnings Overfull \vbox (1.39674pt too high) has occurred while \output is active [] with always the same value of 1.39674pt.
It seems to be related to the ...
3
votes
2answers
1k views
Minted, setstretch and font size
I'm using minted package. My problem is \usepackage[nodisplayskipstretch]{setspace} \setstretch{1.5} line. I do need this line stretch, but I don't want it to affect code sources generated by minted.
...
2
votes
0answers
81 views
Make all \begin{quote} … \end{quote} blocks single spaced with setspace? [duplicate]
Possible Duplicate:
Reduce the space between a quotation and a title
I am writing a double-spaced paper using the setspace package. I need quotations to be formatted with single spacing, ...
3
votes
2answers
374 views
Reduce the space between a quotation and a title
When I use the quotation environment at the start of a section I get too much space between the title and the start of the quotation. How to modify spacing around quotation environment? has ways to ...
3
votes
3answers
2k views
Change line spacing for footnote text only
I have to format a document to this finicky standard: "The entire document cannot exceed 25 double-spaced pages, including all supplementary material, and must be in Times New Roman, 11 point, font. ...
2
votes
1answer
5k views
setspace.sty not found
I'm trying to do double-spacing using the setspace package, but I'm getting a setspace.sty not found error. My code looks like this:
\documentclass{article}
\usepackage{setspace}
\begin{document}
...
10
votes
3answers
1k views
Line spacing inside quote environment
I use the setspace package to set double spacing throughout the document. It also sets double spacing inside the quote environment. But, I want one half space inside the quote environment. How can ...
5
votes
3answers
538 views
Change line spacing for normal text, but not in tabular or verse
\usepackage{setspace}
\doublespacing
I used above two lines to change the spacing in my document. This changes the spacing of the entire document.
My requirement is to change the line spacing in ...
4
votes
2answers
874 views
Wrong spacing before theorem environment (amsthm) (LaTeX)
I am using the asmthm package to have environment.
I also use \usepackage[onehalfspacing]{setspace} to have 1.5 line spacing.
However, when I use the the theorem environment, the spacing before is ...
7
votes
1answer
790 views
How to set fixed (8mm) linespacing?
My university wants me to have in my report line spacing of not less than 8mm. ( Font size must be 11pt or larger. )
How can I specify this other than using \lineskip which is discouraged?
I'd like ...
1
vote
1answer
409 views
Glossaries \glossarypostamble - set text single spaced
I use the package setspace to set my text single spaced. My list of tables, list of abbreviations and so on I set with the command \onehalfspacing.
Furthermore I need an annotation in all lists. This ...
1
vote
1answer
192 views
Adjust vertical space of headings carried out by different line spacing
A question related to the koma script guide. As recommended on page 57, I set the table of contents, glossary, list of tables and list of figures with the standard line spacing. The text should have a ...
4
votes
2answers
250 views
ledmac vs. setspace: Don’t change spacing of critical notes
Normaly setspace tries to set only the stretch of main text an footnotes are unchanged. In combination with ledmac the critical notes are stretched too. Is there a way to unstretch the notes like ...
1
vote
2answers
950 views
Setspace package not working
I've tried searching, and I couldn't find my answer, so I hope I'm not re-asking stupid stuff. That being said, I'm a total noob to LaTeX. As such, this question is probably ridiculous and stupid.
...
6
votes
2answers
651 views
Why does doublespacing using setspace have errors when used in a minimal documentclass?
Just curious why \doublespacing seems broken in a minimal document. It works ok when the documentclass is set to article.
\documentclass{minimal}
\usepackage{setspace}
\doublespacing
...
39
votes
3answers
6k views
What does 'double spacing' mean?
I think I know the meanings of \baselineskip, \lineskip and \lineskiplimit in TeX, I also know \baselineskip, \baselinestretch, \linespread and the second argument of \fontsize in LaTeX. However, I ...
0
votes
1answer
358 views
setspace kill the \flushbottom, how to make the sep between footnote item equal that in normal text
I want double spacing, but then sep between footnote item is strange. I use setspace package, but it kill the \flushbottom mechanism.
Is there a method after I set \linespread{2}, the footnote text ...
4
votes
1answer
447 views
How can I set single spacing in todonotes?
Question
How can I \renewcommand{\todo} to give single spacing in the todonotes of an otherwise double spaced document?
What I have tried
The documentation (p. 11, section 1.8.6) suggests that ...
1
vote
1answer
764 views
figure overrides linespacing
I am using framed package to draw a box around some texts. When I compile it without wrapping it up in the figure command I have no problem. However, when I use it like this:
...
13
votes
1answer
4k views
Finely control line spacing when already using the setspace package?
I'm using setspace to double-space an article (as it's widely known, this package behaves more intelligently than \linespread, Double line spacing alread covers the details).
\usepackage{setspace}
...
5
votes
1answer
831 views
amsart, setspace, and footnotes
When I use the setspace package in an amsart document, the indentation of footnotes is messed up: the first-line indent is lost, with everything pushed to the left.
Sample document:
...
