Instead of Chapter it shows as a “Kapitel”
I was wondering why my chapter name shows as "Kapitel" instead of "Chapter"
Here is the error

Here is my Latex code
documentclass[12pt,a4paper]{report}
usepackage{graphicx}
usepackage{caption}
usepackage{epstopdf}
usepackage{hyperref}
usepackage[linesnumbered,ruled,vlined]{algorithm2e}
usepackage{enumerate}
usepackage{enumitem}
usepackage{amsmath}
usepackage[justification=centering]{caption}
usepackage{subcaption}
usepackage{textcomp} %for apostrophe
usepackage[tmargin=1in,bmargin=1in,lmargin=1.25in,rmargin=1.25in]{geometry}
usepackage{hyperref}
usepackage{xurl}
usepackage{booktabs}
usepackage{lscape}
usepackage{tabularx}
usepackage{graphicx}
usepackage{adjustbox}
usepackage{titlesec}% Http://ctan.org/pkg/titlesec
usepackage{enumitem}
usepackage[ngerman]{babel}
usepackage[latin1]{inputenc}
usepackage{float,xcolor}
usepackage{graphicx}
usepackage{multicol}
usepackage{makeidx}
usepackage{lipsum}
begin{document}
include{c0}
end{document}
sectioning numbering chapters
add a comment |
I was wondering why my chapter name shows as "Kapitel" instead of "Chapter"
Here is the error

Here is my Latex code
documentclass[12pt,a4paper]{report}
usepackage{graphicx}
usepackage{caption}
usepackage{epstopdf}
usepackage{hyperref}
usepackage[linesnumbered,ruled,vlined]{algorithm2e}
usepackage{enumerate}
usepackage{enumitem}
usepackage{amsmath}
usepackage[justification=centering]{caption}
usepackage{subcaption}
usepackage{textcomp} %for apostrophe
usepackage[tmargin=1in,bmargin=1in,lmargin=1.25in,rmargin=1.25in]{geometry}
usepackage{hyperref}
usepackage{xurl}
usepackage{booktabs}
usepackage{lscape}
usepackage{tabularx}
usepackage{graphicx}
usepackage{adjustbox}
usepackage{titlesec}% Http://ctan.org/pkg/titlesec
usepackage{enumitem}
usepackage[ngerman]{babel}
usepackage[latin1]{inputenc}
usepackage{float,xcolor}
usepackage{graphicx}
usepackage{multicol}
usepackage{makeidx}
usepackage{lipsum}
begin{document}
include{c0}
end{document}
sectioning numbering chapters
1
usepackage[ngerman]{babel}is the cause, I think.
– JouleV
10 mins ago
I did that but it is still the same.
– Norman
7 mins ago
I confirm what @JouleV is saying. You need to removeusepackage[ngerman]{babel}. Unless there is something special inc0, which we do not have, this fixes the issue. In general, you can debug yourself by commenting out the packages, checking the result and then resurrecting them. And for packages sometimes "less is more" holds.
– marmot
7 mins ago
Well, in which language do you write your document? Withusepackage[ngerman]{babel}you get german names for chapter etc. If you want to write in english useusepackage[english]{babel}. BTWhyperrefshould be called last, do not call packages twice!
– Kurt
3 mins ago
add a comment |
I was wondering why my chapter name shows as "Kapitel" instead of "Chapter"
Here is the error

Here is my Latex code
documentclass[12pt,a4paper]{report}
usepackage{graphicx}
usepackage{caption}
usepackage{epstopdf}
usepackage{hyperref}
usepackage[linesnumbered,ruled,vlined]{algorithm2e}
usepackage{enumerate}
usepackage{enumitem}
usepackage{amsmath}
usepackage[justification=centering]{caption}
usepackage{subcaption}
usepackage{textcomp} %for apostrophe
usepackage[tmargin=1in,bmargin=1in,lmargin=1.25in,rmargin=1.25in]{geometry}
usepackage{hyperref}
usepackage{xurl}
usepackage{booktabs}
usepackage{lscape}
usepackage{tabularx}
usepackage{graphicx}
usepackage{adjustbox}
usepackage{titlesec}% Http://ctan.org/pkg/titlesec
usepackage{enumitem}
usepackage[ngerman]{babel}
usepackage[latin1]{inputenc}
usepackage{float,xcolor}
usepackage{graphicx}
usepackage{multicol}
usepackage{makeidx}
usepackage{lipsum}
begin{document}
include{c0}
end{document}
sectioning numbering chapters
I was wondering why my chapter name shows as "Kapitel" instead of "Chapter"
Here is the error

Here is my Latex code
documentclass[12pt,a4paper]{report}
usepackage{graphicx}
usepackage{caption}
usepackage{epstopdf}
usepackage{hyperref}
usepackage[linesnumbered,ruled,vlined]{algorithm2e}
usepackage{enumerate}
usepackage{enumitem}
usepackage{amsmath}
usepackage[justification=centering]{caption}
usepackage{subcaption}
usepackage{textcomp} %for apostrophe
usepackage[tmargin=1in,bmargin=1in,lmargin=1.25in,rmargin=1.25in]{geometry}
usepackage{hyperref}
usepackage{xurl}
usepackage{booktabs}
usepackage{lscape}
usepackage{tabularx}
usepackage{graphicx}
usepackage{adjustbox}
usepackage{titlesec}% Http://ctan.org/pkg/titlesec
usepackage{enumitem}
usepackage[ngerman]{babel}
usepackage[latin1]{inputenc}
usepackage{float,xcolor}
usepackage{graphicx}
usepackage{multicol}
usepackage{makeidx}
usepackage{lipsum}
begin{document}
include{c0}
end{document}
sectioning numbering chapters
sectioning numbering chapters
asked 11 mins ago
NormanNorman
1352312
1352312
1
usepackage[ngerman]{babel}is the cause, I think.
– JouleV
10 mins ago
I did that but it is still the same.
– Norman
7 mins ago
I confirm what @JouleV is saying. You need to removeusepackage[ngerman]{babel}. Unless there is something special inc0, which we do not have, this fixes the issue. In general, you can debug yourself by commenting out the packages, checking the result and then resurrecting them. And for packages sometimes "less is more" holds.
– marmot
7 mins ago
Well, in which language do you write your document? Withusepackage[ngerman]{babel}you get german names for chapter etc. If you want to write in english useusepackage[english]{babel}. BTWhyperrefshould be called last, do not call packages twice!
– Kurt
3 mins ago
add a comment |
1
usepackage[ngerman]{babel}is the cause, I think.
– JouleV
10 mins ago
I did that but it is still the same.
– Norman
7 mins ago
I confirm what @JouleV is saying. You need to removeusepackage[ngerman]{babel}. Unless there is something special inc0, which we do not have, this fixes the issue. In general, you can debug yourself by commenting out the packages, checking the result and then resurrecting them. And for packages sometimes "less is more" holds.
– marmot
7 mins ago
Well, in which language do you write your document? Withusepackage[ngerman]{babel}you get german names for chapter etc. If you want to write in english useusepackage[english]{babel}. BTWhyperrefshould be called last, do not call packages twice!
– Kurt
3 mins ago
1
1
usepackage[ngerman]{babel} is the cause, I think.– JouleV
10 mins ago
usepackage[ngerman]{babel} is the cause, I think.– JouleV
10 mins ago
I did that but it is still the same.
– Norman
7 mins ago
I did that but it is still the same.
– Norman
7 mins ago
I confirm what @JouleV is saying. You need to remove
usepackage[ngerman]{babel}. Unless there is something special in c0, which we do not have, this fixes the issue. In general, you can debug yourself by commenting out the packages, checking the result and then resurrecting them. And for packages sometimes "less is more" holds.– marmot
7 mins ago
I confirm what @JouleV is saying. You need to remove
usepackage[ngerman]{babel}. Unless there is something special in c0, which we do not have, this fixes the issue. In general, you can debug yourself by commenting out the packages, checking the result and then resurrecting them. And for packages sometimes "less is more" holds.– marmot
7 mins ago
Well, in which language do you write your document? With
usepackage[ngerman]{babel} you get german names for chapter etc. If you want to write in english use usepackage[english]{babel}. BTW hyperref should be called last, do not call packages twice!– Kurt
3 mins ago
Well, in which language do you write your document? With
usepackage[ngerman]{babel} you get german names for chapter etc. If you want to write in english use usepackage[english]{babel}. BTW hyperref should be called last, do not call packages twice!– Kurt
3 mins ago
add a comment |
0
active
oldest
votes
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%2f472047%2finstead-of-chapter-it-shows-as-a-kapitel%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f472047%2finstead-of-chapter-it-shows-as-a-kapitel%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
1
usepackage[ngerman]{babel}is the cause, I think.– JouleV
10 mins ago
I did that but it is still the same.
– Norman
7 mins ago
I confirm what @JouleV is saying. You need to remove
usepackage[ngerman]{babel}. Unless there is something special inc0, which we do not have, this fixes the issue. In general, you can debug yourself by commenting out the packages, checking the result and then resurrecting them. And for packages sometimes "less is more" holds.– marmot
7 mins ago
Well, in which language do you write your document? With
usepackage[ngerman]{babel}you get german names for chapter etc. If you want to write in english useusepackage[english]{babel}. BTWhyperrefshould be called last, do not call packages twice!– Kurt
3 mins ago