How center the chapter* titles
up vote
3
down vote
favorite
I want center the title "Preface" and "Abstract" only. I do not want to centralize all the chapters. I can not and I should not delete any bookstore, I need all the libraries.
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
horizontal-alignment chapters starred-version
add a comment |
up vote
3
down vote
favorite
I want center the title "Preface" and "Abstract" only. I do not want to centralize all the chapters. I can not and I should not delete any bookstore, I need all the libraries.
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
horizontal-alignment chapters starred-version
Should all chapter titles be centred, or only unnumbered chapters?
– Bernard
Nov 21 at 23:56
@Bernard only two, Preface and Abstract
– x-rw
Nov 21 at 23:57
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I want center the title "Preface" and "Abstract" only. I do not want to centralize all the chapters. I can not and I should not delete any bookstore, I need all the libraries.
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
horizontal-alignment chapters starred-version
I want center the title "Preface" and "Abstract" only. I do not want to centralize all the chapters. I can not and I should not delete any bookstore, I need all the libraries.
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
horizontal-alignment chapters starred-version
horizontal-alignment chapters starred-version
edited Nov 21 at 23:55
Werner
432k609521633
432k609521633
asked Nov 21 at 23:38
x-rw
32817
32817
Should all chapter titles be centred, or only unnumbered chapters?
– Bernard
Nov 21 at 23:56
@Bernard only two, Preface and Abstract
– x-rw
Nov 21 at 23:57
add a comment |
Should all chapter titles be centred, or only unnumbered chapters?
– Bernard
Nov 21 at 23:56
@Bernard only two, Preface and Abstract
– x-rw
Nov 21 at 23:57
Should all chapter titles be centred, or only unnumbered chapters?
– Bernard
Nov 21 at 23:56
Should all chapter titles be centred, or only unnumbered chapters?
– Bernard
Nov 21 at 23:56
@Bernard only two, Preface and Abstract
– x-rw
Nov 21 at 23:57
@Bernard only two, Preface and Abstract
– x-rw
Nov 21 at 23:57
add a comment |
3 Answers
3
active
oldest
votes
up vote
4
down vote
accepted
Set the title inside a makebox[linewidth]
; this naturally centres it. It would not have any impact on headers or the ToC since these elements don't end up there.
documentclass{book}
usepackage{lipsum}
begin{document}
chapter*{makebox[linewidth]{Preface}}
lipsum[1]
chapter*{makebox[linewidth]{Abstract}}
lipsum[2]
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
add a comment |
up vote
0
down vote
Using the tools from sectsty
:
documentclass{book}
usepackage[left=3cm, right=2cm, vmargin=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapterfont{hugebfseriescentering}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapterfont{hugebfseriesraggedright}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
add a comment |
up vote
0
down vote
Fast solution
You could set a manual space
chapter*{hspace{.4textwidth}Preface}
which puts the title almost in the middle of the page
Reasoned solution
Otherwise you could think of measuring the length of your title and make the thing more precise with the package calc
%PREAMBLE
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
%... BEGIN DOCUMENT
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
chaplen{OTHER}
chapter*{hspace*{mylen}OTHER}
FUll code:
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
begin{document}
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
Some text
chaplen{Abstract}
chapter*{hspace*{mylen}Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
1
Does not centralize well, another option?
– x-rw
Nov 21 at 23:53
Why you multiplied by 2?
– Sigur
Nov 21 at 23:56
1
I think it is still wrong. If it would work, it should be(x-y)/2
.
– Sigur
Nov 21 at 23:59
add a comment |
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
accepted
Set the title inside a makebox[linewidth]
; this naturally centres it. It would not have any impact on headers or the ToC since these elements don't end up there.
documentclass{book}
usepackage{lipsum}
begin{document}
chapter*{makebox[linewidth]{Preface}}
lipsum[1]
chapter*{makebox[linewidth]{Abstract}}
lipsum[2]
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
add a comment |
up vote
4
down vote
accepted
Set the title inside a makebox[linewidth]
; this naturally centres it. It would not have any impact on headers or the ToC since these elements don't end up there.
documentclass{book}
usepackage{lipsum}
begin{document}
chapter*{makebox[linewidth]{Preface}}
lipsum[1]
chapter*{makebox[linewidth]{Abstract}}
lipsum[2]
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
add a comment |
up vote
4
down vote
accepted
up vote
4
down vote
accepted
Set the title inside a makebox[linewidth]
; this naturally centres it. It would not have any impact on headers or the ToC since these elements don't end up there.
documentclass{book}
usepackage{lipsum}
begin{document}
chapter*{makebox[linewidth]{Preface}}
lipsum[1]
chapter*{makebox[linewidth]{Abstract}}
lipsum[2]
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
Set the title inside a makebox[linewidth]
; this naturally centres it. It would not have any impact on headers or the ToC since these elements don't end up there.
documentclass{book}
usepackage{lipsum}
begin{document}
chapter*{makebox[linewidth]{Preface}}
lipsum[1]
chapter*{makebox[linewidth]{Abstract}}
lipsum[2]
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
answered Nov 21 at 23:54
Werner
432k609521633
432k609521633
add a comment |
add a comment |
up vote
0
down vote
Using the tools from sectsty
:
documentclass{book}
usepackage[left=3cm, right=2cm, vmargin=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapterfont{hugebfseriescentering}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapterfont{hugebfseriesraggedright}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
add a comment |
up vote
0
down vote
Using the tools from sectsty
:
documentclass{book}
usepackage[left=3cm, right=2cm, vmargin=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapterfont{hugebfseriescentering}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapterfont{hugebfseriesraggedright}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
add a comment |
up vote
0
down vote
up vote
0
down vote
Using the tools from sectsty
:
documentclass{book}
usepackage[left=3cm, right=2cm, vmargin=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapterfont{hugebfseriescentering}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapterfont{hugebfseriesraggedright}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
Using the tools from sectsty
:
documentclass{book}
usepackage[left=3cm, right=2cm, vmargin=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
begin{document}
chapterfont{hugebfseriescentering}
chapter*{centering Preface}
Some text
chapter*{centering Abstract}
chapterfont{hugebfseriesraggedright}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
answered Nov 22 at 0:13
Bernard
163k768192
163k768192
add a comment |
add a comment |
up vote
0
down vote
Fast solution
You could set a manual space
chapter*{hspace{.4textwidth}Preface}
which puts the title almost in the middle of the page
Reasoned solution
Otherwise you could think of measuring the length of your title and make the thing more precise with the package calc
%PREAMBLE
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
%... BEGIN DOCUMENT
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
chaplen{OTHER}
chapter*{hspace*{mylen}OTHER}
FUll code:
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
begin{document}
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
Some text
chaplen{Abstract}
chapter*{hspace*{mylen}Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
1
Does not centralize well, another option?
– x-rw
Nov 21 at 23:53
Why you multiplied by 2?
– Sigur
Nov 21 at 23:56
1
I think it is still wrong. If it would work, it should be(x-y)/2
.
– Sigur
Nov 21 at 23:59
add a comment |
up vote
0
down vote
Fast solution
You could set a manual space
chapter*{hspace{.4textwidth}Preface}
which puts the title almost in the middle of the page
Reasoned solution
Otherwise you could think of measuring the length of your title and make the thing more precise with the package calc
%PREAMBLE
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
%... BEGIN DOCUMENT
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
chaplen{OTHER}
chapter*{hspace*{mylen}OTHER}
FUll code:
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
begin{document}
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
Some text
chaplen{Abstract}
chapter*{hspace*{mylen}Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
1
Does not centralize well, another option?
– x-rw
Nov 21 at 23:53
Why you multiplied by 2?
– Sigur
Nov 21 at 23:56
1
I think it is still wrong. If it would work, it should be(x-y)/2
.
– Sigur
Nov 21 at 23:59
add a comment |
up vote
0
down vote
up vote
0
down vote
Fast solution
You could set a manual space
chapter*{hspace{.4textwidth}Preface}
which puts the title almost in the middle of the page
Reasoned solution
Otherwise you could think of measuring the length of your title and make the thing more precise with the package calc
%PREAMBLE
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
%... BEGIN DOCUMENT
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
chaplen{OTHER}
chapter*{hspace*{mylen}OTHER}
FUll code:
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
begin{document}
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
Some text
chaplen{Abstract}
chapter*{hspace*{mylen}Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
Fast solution
You could set a manual space
chapter*{hspace{.4textwidth}Preface}
which puts the title almost in the middle of the page
Reasoned solution
Otherwise you could think of measuring the length of your title and make the thing more precise with the package calc
%PREAMBLE
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
%... BEGIN DOCUMENT
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
chaplen{OTHER}
chapter*{hspace*{mylen}OTHER}
FUll code:
documentclass{book}
usepackage[left=3cm, right=2cm, top=2cm, bottom=2cm]{geometry}
usepackage{lipsum}
usepackage{lscape}
usepackage[utf8]{inputenc}
usepackage[spanish,es-tabla]{babel}
usepackage[table]{xcolor}
usepackage{sectsty}
sectionfont{fontsize{12pt}{14.4pt}selectfontsffamilybfseries}
subsectionfont{fontsize{11.5pt}{13.8pt}selectfontsffamilybfseries}
subsubsectionfont{normalsizesffamilybfseries}
usepackage{calc}
newlengthmylen
newcommandchaplen[1]{
setlengthmylen{(textwidth-widthof{Hugebfseries #1})/2}
}
begin{document}
chaplen{Preface}
chapter*{hspace*{mylen}Preface}
Some text
chaplen{Abstract}
chapter*{hspace*{mylen}Abstract}
chapter{Introduction}
chapter{Body}
chapter{Conclusion}
end{document}
edited Nov 22 at 0:13
answered Nov 21 at 23:48
GiuTeX
661217
661217
1
Does not centralize well, another option?
– x-rw
Nov 21 at 23:53
Why you multiplied by 2?
– Sigur
Nov 21 at 23:56
1
I think it is still wrong. If it would work, it should be(x-y)/2
.
– Sigur
Nov 21 at 23:59
add a comment |
1
Does not centralize well, another option?
– x-rw
Nov 21 at 23:53
Why you multiplied by 2?
– Sigur
Nov 21 at 23:56
1
I think it is still wrong. If it would work, it should be(x-y)/2
.
– Sigur
Nov 21 at 23:59
1
1
Does not centralize well, another option?
– x-rw
Nov 21 at 23:53
Does not centralize well, another option?
– x-rw
Nov 21 at 23:53
Why you multiplied by 2?
– Sigur
Nov 21 at 23:56
Why you multiplied by 2?
– Sigur
Nov 21 at 23:56
1
1
I think it is still wrong. If it would work, it should be
(x-y)/2
.– Sigur
Nov 21 at 23:59
I think it is still wrong. If it would work, it should be
(x-y)/2
.– Sigur
Nov 21 at 23:59
add a comment |
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%2f461212%2fhow-center-the-chapter-titles%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
Should all chapter titles be centred, or only unnumbered chapters?
– Bernard
Nov 21 at 23:56
@Bernard only two, Preface and Abstract
– x-rw
Nov 21 at 23:57