Changing “Chapter” just for one chapter












2















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










share|improve this question



























    2















    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










    share|improve this question

























      2












      2








      2








      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










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 26 at 13:45









      Joe DumarsJoe Dumars

      284




      284






















          2 Answers
          2






          active

          oldest

          votes


















          3














          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}


          enter image description here



          enter image description here






          share|improve this answer
























          • 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



















          1














          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}


          Chapitre 1 French Bonjour



          Chapter 2 English Hello






          share|improve this answer
























            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            3














            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}


            enter image description here



            enter image description here






            share|improve this answer
























            • 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
















            3














            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}


            enter image description here



            enter image description here






            share|improve this answer
























            • 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














            3












            3








            3







            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}


            enter image description here



            enter image description here






            share|improve this answer













            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}


            enter image description here



            enter image description here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            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 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



















            • 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

















            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











            1














            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}


            Chapitre 1 French Bonjour



            Chapter 2 English Hello






            share|improve this answer




























              1














              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}


              Chapitre 1 French Bonjour



              Chapter 2 English Hello






              share|improve this answer


























                1












                1








                1







                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}


                Chapitre 1 French Bonjour



                Chapter 2 English Hello






                share|improve this answer













                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}


                Chapitre 1 French Bonjour



                Chapter 2 English Hello







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 31 at 15:22









                moewemoewe

                96.2k10117360




                96.2k10117360






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    How to send String Array data to Server using php in android

                    Title Spacing in Bjornstrup Chapter, Removing Chapter Number From Contents

                    Is anime1.com a legal site for watching anime?