Change line spacing inside the document
up vote
85
down vote
favorite
This is my code
documentclass[12pt,a4paper]{book}
renewcommand{baselinestretch}{1.5}
begin{document}
include{Chapter1}
end{document}
I have please a question:
I would change the line spacing (1.5 --> 1.0) of a page inside the document and not the entire document and the size of the words, how can I do please?
line-spacing
add a comment |
up vote
85
down vote
favorite
This is my code
documentclass[12pt,a4paper]{book}
renewcommand{baselinestretch}{1.5}
begin{document}
include{Chapter1}
end{document}
I have please a question:
I would change the line spacing (1.5 --> 1.0) of a page inside the document and not the entire document and the size of the words, how can I do please?
line-spacing
after using your code my chapters start being displayed on the left side (which is odd and wrong) - how can I make latex display them on the right (also known as the right) side again? I'm using the {book} class.
– TheChymera
Nov 14 '13 at 19:19
add a comment |
up vote
85
down vote
favorite
up vote
85
down vote
favorite
This is my code
documentclass[12pt,a4paper]{book}
renewcommand{baselinestretch}{1.5}
begin{document}
include{Chapter1}
end{document}
I have please a question:
I would change the line spacing (1.5 --> 1.0) of a page inside the document and not the entire document and the size of the words, how can I do please?
line-spacing
This is my code
documentclass[12pt,a4paper]{book}
renewcommand{baselinestretch}{1.5}
begin{document}
include{Chapter1}
end{document}
I have please a question:
I would change the line spacing (1.5 --> 1.0) of a page inside the document and not the entire document and the size of the words, how can I do please?
line-spacing
line-spacing
edited Dec 21 '12 at 21:52
asked Nov 22 '12 at 21:27
researcher
1,53062739
1,53062739
after using your code my chapters start being displayed on the left side (which is odd and wrong) - how can I make latex display them on the right (also known as the right) side again? I'm using the {book} class.
– TheChymera
Nov 14 '13 at 19:19
add a comment |
after using your code my chapters start being displayed on the left side (which is odd and wrong) - how can I make latex display them on the right (also known as the right) side again? I'm using the {book} class.
– TheChymera
Nov 14 '13 at 19:19
after using your code my chapters start being displayed on the left side (which is odd and wrong) - how can I make latex display them on the right (also known as the right) side again? I'm using the {book} class.
– TheChymera
Nov 14 '13 at 19:19
after using your code my chapters start being displayed on the left side (which is odd and wrong) - how can I make latex display them on the right (also known as the right) side again? I'm using the {book} class.
– TheChymera
Nov 14 '13 at 19:19
add a comment |
1 Answer
1
active
oldest
votes
up vote
93
down vote
accepted
You can use setstretch{}
. If you want to only affect a certain content you can use it with a group.
You can also apply any size changing switches such as small
or tiny
inside the {}
group as well.
Code
documentclass[12pt,a4paper]{book}
usepackage{xcolor}
usepackage{lipsum}
usepackage{setspace}
renewcommand{baselinestretch}{1.5}
begin{document}
lipsum[1]
{setstretch{1.0}color{blue}
lipsum[2]
}
lipsum[3]
end{document}
9
Just remember to end the paragraph before the final}
(lipsum
adds apar
at its end). Usinglinespread{1.5}
(or some command ofsetspace
) is better than redefiningbaselinestretch
.
– egreg
Nov 22 '12 at 21:47
@Peter Thank you so much :) Please i have another question: i have used documentclass[12pt,a4paper]{book} and i'd like to change the size 12 to 10 of one paragraph inside the document, Have you an idea please ?
– researcher
Dec 21 '12 at 13:25
1
@researcher: You could try using the answers from LaTeX — specify font point size? and keep the change to be within a group (either inside a brace group{}
, or withinbegingroup
,endgroup
pair. If that does not help you achieve the desired results you should post a separate question. Also, please note that you should use the full username with the@
syntax. I was only notified of this as it was a comment to an answer of mine.
– Peter Grill
Dec 21 '12 at 19:01
i set fontsize{10} just before the text ?
– researcher
Dec 21 '12 at 19:19
@researcher:fontsize
has two parameters, not one.
– Peter Grill
Dec 21 '12 at 19:20
|
show 4 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
93
down vote
accepted
You can use setstretch{}
. If you want to only affect a certain content you can use it with a group.
You can also apply any size changing switches such as small
or tiny
inside the {}
group as well.
Code
documentclass[12pt,a4paper]{book}
usepackage{xcolor}
usepackage{lipsum}
usepackage{setspace}
renewcommand{baselinestretch}{1.5}
begin{document}
lipsum[1]
{setstretch{1.0}color{blue}
lipsum[2]
}
lipsum[3]
end{document}
9
Just remember to end the paragraph before the final}
(lipsum
adds apar
at its end). Usinglinespread{1.5}
(or some command ofsetspace
) is better than redefiningbaselinestretch
.
– egreg
Nov 22 '12 at 21:47
@Peter Thank you so much :) Please i have another question: i have used documentclass[12pt,a4paper]{book} and i'd like to change the size 12 to 10 of one paragraph inside the document, Have you an idea please ?
– researcher
Dec 21 '12 at 13:25
1
@researcher: You could try using the answers from LaTeX — specify font point size? and keep the change to be within a group (either inside a brace group{}
, or withinbegingroup
,endgroup
pair. If that does not help you achieve the desired results you should post a separate question. Also, please note that you should use the full username with the@
syntax. I was only notified of this as it was a comment to an answer of mine.
– Peter Grill
Dec 21 '12 at 19:01
i set fontsize{10} just before the text ?
– researcher
Dec 21 '12 at 19:19
@researcher:fontsize
has two parameters, not one.
– Peter Grill
Dec 21 '12 at 19:20
|
show 4 more comments
up vote
93
down vote
accepted
You can use setstretch{}
. If you want to only affect a certain content you can use it with a group.
You can also apply any size changing switches such as small
or tiny
inside the {}
group as well.
Code
documentclass[12pt,a4paper]{book}
usepackage{xcolor}
usepackage{lipsum}
usepackage{setspace}
renewcommand{baselinestretch}{1.5}
begin{document}
lipsum[1]
{setstretch{1.0}color{blue}
lipsum[2]
}
lipsum[3]
end{document}
9
Just remember to end the paragraph before the final}
(lipsum
adds apar
at its end). Usinglinespread{1.5}
(or some command ofsetspace
) is better than redefiningbaselinestretch
.
– egreg
Nov 22 '12 at 21:47
@Peter Thank you so much :) Please i have another question: i have used documentclass[12pt,a4paper]{book} and i'd like to change the size 12 to 10 of one paragraph inside the document, Have you an idea please ?
– researcher
Dec 21 '12 at 13:25
1
@researcher: You could try using the answers from LaTeX — specify font point size? and keep the change to be within a group (either inside a brace group{}
, or withinbegingroup
,endgroup
pair. If that does not help you achieve the desired results you should post a separate question. Also, please note that you should use the full username with the@
syntax. I was only notified of this as it was a comment to an answer of mine.
– Peter Grill
Dec 21 '12 at 19:01
i set fontsize{10} just before the text ?
– researcher
Dec 21 '12 at 19:19
@researcher:fontsize
has two parameters, not one.
– Peter Grill
Dec 21 '12 at 19:20
|
show 4 more comments
up vote
93
down vote
accepted
up vote
93
down vote
accepted
You can use setstretch{}
. If you want to only affect a certain content you can use it with a group.
You can also apply any size changing switches such as small
or tiny
inside the {}
group as well.
Code
documentclass[12pt,a4paper]{book}
usepackage{xcolor}
usepackage{lipsum}
usepackage{setspace}
renewcommand{baselinestretch}{1.5}
begin{document}
lipsum[1]
{setstretch{1.0}color{blue}
lipsum[2]
}
lipsum[3]
end{document}
You can use setstretch{}
. If you want to only affect a certain content you can use it with a group.
You can also apply any size changing switches such as small
or tiny
inside the {}
group as well.
Code
documentclass[12pt,a4paper]{book}
usepackage{xcolor}
usepackage{lipsum}
usepackage{setspace}
renewcommand{baselinestretch}{1.5}
begin{document}
lipsum[1]
{setstretch{1.0}color{blue}
lipsum[2]
}
lipsum[3]
end{document}
edited Nov 22 '12 at 21:50
answered Nov 22 '12 at 21:29
Peter Grill
163k24432744
163k24432744
9
Just remember to end the paragraph before the final}
(lipsum
adds apar
at its end). Usinglinespread{1.5}
(or some command ofsetspace
) is better than redefiningbaselinestretch
.
– egreg
Nov 22 '12 at 21:47
@Peter Thank you so much :) Please i have another question: i have used documentclass[12pt,a4paper]{book} and i'd like to change the size 12 to 10 of one paragraph inside the document, Have you an idea please ?
– researcher
Dec 21 '12 at 13:25
1
@researcher: You could try using the answers from LaTeX — specify font point size? and keep the change to be within a group (either inside a brace group{}
, or withinbegingroup
,endgroup
pair. If that does not help you achieve the desired results you should post a separate question. Also, please note that you should use the full username with the@
syntax. I was only notified of this as it was a comment to an answer of mine.
– Peter Grill
Dec 21 '12 at 19:01
i set fontsize{10} just before the text ?
– researcher
Dec 21 '12 at 19:19
@researcher:fontsize
has two parameters, not one.
– Peter Grill
Dec 21 '12 at 19:20
|
show 4 more comments
9
Just remember to end the paragraph before the final}
(lipsum
adds apar
at its end). Usinglinespread{1.5}
(or some command ofsetspace
) is better than redefiningbaselinestretch
.
– egreg
Nov 22 '12 at 21:47
@Peter Thank you so much :) Please i have another question: i have used documentclass[12pt,a4paper]{book} and i'd like to change the size 12 to 10 of one paragraph inside the document, Have you an idea please ?
– researcher
Dec 21 '12 at 13:25
1
@researcher: You could try using the answers from LaTeX — specify font point size? and keep the change to be within a group (either inside a brace group{}
, or withinbegingroup
,endgroup
pair. If that does not help you achieve the desired results you should post a separate question. Also, please note that you should use the full username with the@
syntax. I was only notified of this as it was a comment to an answer of mine.
– Peter Grill
Dec 21 '12 at 19:01
i set fontsize{10} just before the text ?
– researcher
Dec 21 '12 at 19:19
@researcher:fontsize
has two parameters, not one.
– Peter Grill
Dec 21 '12 at 19:20
9
9
Just remember to end the paragraph before the final
}
(lipsum
adds a par
at its end). Using linespread{1.5}
(or some command of setspace
) is better than redefining baselinestretch
.– egreg
Nov 22 '12 at 21:47
Just remember to end the paragraph before the final
}
(lipsum
adds a par
at its end). Using linespread{1.5}
(or some command of setspace
) is better than redefining baselinestretch
.– egreg
Nov 22 '12 at 21:47
@Peter Thank you so much :) Please i have another question: i have used documentclass[12pt,a4paper]{book} and i'd like to change the size 12 to 10 of one paragraph inside the document, Have you an idea please ?
– researcher
Dec 21 '12 at 13:25
@Peter Thank you so much :) Please i have another question: i have used documentclass[12pt,a4paper]{book} and i'd like to change the size 12 to 10 of one paragraph inside the document, Have you an idea please ?
– researcher
Dec 21 '12 at 13:25
1
1
@researcher: You could try using the answers from LaTeX — specify font point size? and keep the change to be within a group (either inside a brace group
{}
, or within begingroup
, endgroup
pair. If that does not help you achieve the desired results you should post a separate question. Also, please note that you should use the full username with the @
syntax. I was only notified of this as it was a comment to an answer of mine.– Peter Grill
Dec 21 '12 at 19:01
@researcher: You could try using the answers from LaTeX — specify font point size? and keep the change to be within a group (either inside a brace group
{}
, or within begingroup
, endgroup
pair. If that does not help you achieve the desired results you should post a separate question. Also, please note that you should use the full username with the @
syntax. I was only notified of this as it was a comment to an answer of mine.– Peter Grill
Dec 21 '12 at 19:01
i set fontsize{10} just before the text ?
– researcher
Dec 21 '12 at 19:19
i set fontsize{10} just before the text ?
– researcher
Dec 21 '12 at 19:19
@researcher:
fontsize
has two parameters, not one.– Peter Grill
Dec 21 '12 at 19:20
@researcher:
fontsize
has two parameters, not one.– Peter Grill
Dec 21 '12 at 19:20
|
show 4 more comments
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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%2f83855%2fchange-line-spacing-inside-the-document%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
after using your code my chapters start being displayed on the left side (which is odd and wrong) - how can I make latex display them on the right (also known as the right) side again? I'm using the {book} class.
– TheChymera
Nov 14 '13 at 19:19