Changing “Chapter” just for one chapter
I am writting my thesis, using the book class.
The manuscript is in English, but the first chapter (the introduction) is in French.
I would like to have "Chapitre" instead of "Chapter" written before the chapter title "Introduction" for this chapter, but to keep "Chapter" for the next ones.
I hope my request is clear
sectioning chapters naming
add a comment |
I am writting my thesis, using the book class.
The manuscript is in English, but the first chapter (the introduction) is in French.
I would like to have "Chapitre" instead of "Chapter" written before the chapter title "Introduction" for this chapter, but to keep "Chapter" for the next ones.
I hope my request is clear
sectioning chapters naming
add a comment |
I am writting my thesis, using the book class.
The manuscript is in English, but the first chapter (the introduction) is in French.
I would like to have "Chapitre" instead of "Chapter" written before the chapter title "Introduction" for this chapter, but to keep "Chapter" for the next ones.
I hope my request is clear
sectioning chapters naming
I am writting my thesis, using the book class.
The manuscript is in English, but the first chapter (the introduction) is in French.
I would like to have "Chapitre" instead of "Chapter" written before the chapter title "Introduction" for this chapter, but to keep "Chapter" for the next ones.
I hope my request is clear
sectioning chapters naming
sectioning chapters naming
asked Mar 26 at 13:45
Joe DumarsJoe Dumars
284
284
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
It is not necessary that renewcommand has to be put in the preamble.
documentclass{book}
usepackage{lipsum}
begin{document}
renewcommand{chaptername}{Chapitre}
chapter{Name of the first chapter}
lipsum[1-10]
renewcommand{chaptername}{Chapter}
chapter{This is another chapter}
lipsum[1-10]
end{document}


If the first chapter is going to be in French one should probably also loadbabelto get the hyphenation right. In particular if one usesbegin{otherlanguage}{french}...end{otherlanguage}the chapter string is automatically translated.
– moewe
Mar 31 at 15:09
@moewe I think you should write your own answer for that. It is a completely new approach.
– JouleV
Mar 31 at 15:10
add a comment |
babel automatically translates strings such as 'chapter' if you switch languages with the otherlanguage environment. That environment will also make sure that the correct hyphenation rules are loaded. Other multilingual packages (csquotes, biblatex, ...) may also be able to make use of this.
documentclass[french,british]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage{babel}
usepackage{csquotes}
begin{document}
begin{otherlanguage}{french}
chapter{French}
Bonjour
end{otherlanguage}
chapter{English}
Hello
end{document}


add a comment |
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%2f481525%2fchanging-chapter-just-for-one-chapter%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
It is not necessary that renewcommand has to be put in the preamble.
documentclass{book}
usepackage{lipsum}
begin{document}
renewcommand{chaptername}{Chapitre}
chapter{Name of the first chapter}
lipsum[1-10]
renewcommand{chaptername}{Chapter}
chapter{This is another chapter}
lipsum[1-10]
end{document}


If the first chapter is going to be in French one should probably also loadbabelto get the hyphenation right. In particular if one usesbegin{otherlanguage}{french}...end{otherlanguage}the chapter string is automatically translated.
– moewe
Mar 31 at 15:09
@moewe I think you should write your own answer for that. It is a completely new approach.
– JouleV
Mar 31 at 15:10
add a comment |
It is not necessary that renewcommand has to be put in the preamble.
documentclass{book}
usepackage{lipsum}
begin{document}
renewcommand{chaptername}{Chapitre}
chapter{Name of the first chapter}
lipsum[1-10]
renewcommand{chaptername}{Chapter}
chapter{This is another chapter}
lipsum[1-10]
end{document}


If the first chapter is going to be in French one should probably also loadbabelto get the hyphenation right. In particular if one usesbegin{otherlanguage}{french}...end{otherlanguage}the chapter string is automatically translated.
– moewe
Mar 31 at 15:09
@moewe I think you should write your own answer for that. It is a completely new approach.
– JouleV
Mar 31 at 15:10
add a comment |
It is not necessary that renewcommand has to be put in the preamble.
documentclass{book}
usepackage{lipsum}
begin{document}
renewcommand{chaptername}{Chapitre}
chapter{Name of the first chapter}
lipsum[1-10]
renewcommand{chaptername}{Chapter}
chapter{This is another chapter}
lipsum[1-10]
end{document}


It is not necessary that renewcommand has to be put in the preamble.
documentclass{book}
usepackage{lipsum}
begin{document}
renewcommand{chaptername}{Chapitre}
chapter{Name of the first chapter}
lipsum[1-10]
renewcommand{chaptername}{Chapter}
chapter{This is another chapter}
lipsum[1-10]
end{document}


answered Mar 26 at 13:55
JouleVJouleV
10.8k22560
10.8k22560
If the first chapter is going to be in French one should probably also loadbabelto get the hyphenation right. In particular if one usesbegin{otherlanguage}{french}...end{otherlanguage}the chapter string is automatically translated.
– moewe
Mar 31 at 15:09
@moewe I think you should write your own answer for that. It is a completely new approach.
– JouleV
Mar 31 at 15:10
add a comment |
If the first chapter is going to be in French one should probably also loadbabelto get the hyphenation right. In particular if one usesbegin{otherlanguage}{french}...end{otherlanguage}the chapter string is automatically translated.
– moewe
Mar 31 at 15:09
@moewe I think you should write your own answer for that. It is a completely new approach.
– JouleV
Mar 31 at 15:10
If the first chapter is going to be in French one should probably also load
babel to get the hyphenation right. In particular if one uses begin{otherlanguage}{french}...end{otherlanguage} the chapter string is automatically translated.– moewe
Mar 31 at 15:09
If the first chapter is going to be in French one should probably also load
babel to get the hyphenation right. In particular if one uses begin{otherlanguage}{french}...end{otherlanguage} the chapter string is automatically translated.– moewe
Mar 31 at 15:09
@moewe I think you should write your own answer for that. It is a completely new approach.
– JouleV
Mar 31 at 15:10
@moewe I think you should write your own answer for that. It is a completely new approach.
– JouleV
Mar 31 at 15:10
add a comment |
babel automatically translates strings such as 'chapter' if you switch languages with the otherlanguage environment. That environment will also make sure that the correct hyphenation rules are loaded. Other multilingual packages (csquotes, biblatex, ...) may also be able to make use of this.
documentclass[french,british]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage{babel}
usepackage{csquotes}
begin{document}
begin{otherlanguage}{french}
chapter{French}
Bonjour
end{otherlanguage}
chapter{English}
Hello
end{document}


add a comment |
babel automatically translates strings such as 'chapter' if you switch languages with the otherlanguage environment. That environment will also make sure that the correct hyphenation rules are loaded. Other multilingual packages (csquotes, biblatex, ...) may also be able to make use of this.
documentclass[french,british]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage{babel}
usepackage{csquotes}
begin{document}
begin{otherlanguage}{french}
chapter{French}
Bonjour
end{otherlanguage}
chapter{English}
Hello
end{document}


add a comment |
babel automatically translates strings such as 'chapter' if you switch languages with the otherlanguage environment. That environment will also make sure that the correct hyphenation rules are loaded. Other multilingual packages (csquotes, biblatex, ...) may also be able to make use of this.
documentclass[french,british]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage{babel}
usepackage{csquotes}
begin{document}
begin{otherlanguage}{french}
chapter{French}
Bonjour
end{otherlanguage}
chapter{English}
Hello
end{document}


babel automatically translates strings such as 'chapter' if you switch languages with the otherlanguage environment. That environment will also make sure that the correct hyphenation rules are loaded. Other multilingual packages (csquotes, biblatex, ...) may also be able to make use of this.
documentclass[french,british]{report}
usepackage[T1]{fontenc}
usepackage[utf8]{inputenc}
usepackage{babel}
usepackage{csquotes}
begin{document}
begin{otherlanguage}{french}
chapter{French}
Bonjour
end{otherlanguage}
chapter{English}
Hello
end{document}


answered Mar 31 at 15:22
moewemoewe
96.2k10117360
96.2k10117360
add a comment |
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.
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%2f481525%2fchanging-chapter-just-for-one-chapter%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