How to remove dots after the chapters numbers? The 2019 Stack Overflow Developer Survey...
Difference between "generating set" and free product?
Create an outline of font
How are presidential pardons supposed to be used?
Do warforged have souls?
How to politely respond to generic emails requesting a PhD/job in my lab? Without wasting too much time
Would an alien lifeform be able to achieve space travel if lacking in vision?
He got a vote 80% that of Emmanuel Macron’s
Relations between two reciprocal partial derivatives?
What do you call a plan that's an alternative plan in case your initial plan fails?
Does Parliament need to approve the new Brexit delay to 31 October 2019?
Why not take a picture of a closer black hole?
Typeface like Times New Roman but with "tied" percent sign
Change bounding box of math glyphs in LuaTeX
system call string length limit
Button changing its text & action. Good or terrible?
Why did all the guest students take carriages to the Yule Ball?
First use of “packing” as in carrying a gun
How to copy the contents of all files with a certain name into a new file?
Arduino Pro Micro - switch off LEDs
"... to apply for a visa" or "... and applied for a visa"?
What was the last x86 CPU that did not have the x87 floating-point unit built in?
Mortgage adviser recommends a longer term than necessary combined with overpayments
How to pronounce 1ターン?
Keeping a retro style to sci-fi spaceships?
How to remove dots after the chapters numbers?
The 2019 Stack Overflow Developer Survey Results Are In
Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)Remove dots from TOC, have page numbers right after titlesRemove chapter number on algorithm numbers (scrbook)how to remove page numbers from first page of chaptersNo page numbers after chapters in the contentsChapters without dots in ToCRemove page-breaks after chapters in the report class?Write two chapters on the same pageRemove headers and footers on blank pages between chapters in scrlayer-scrpage page styles?How to remove “CHAPTER” for unnumbered chapters in ToCHow to use only Times font in main text with KOMA and how to remove dots in the page heading?
I would like to remove the dot that appears just after chapter's title. How could I do that? This is my mwe :
documentclass[fontsize=12pt,%
twoside=semi,%
headings=small,%
chapterprefix=true,%
listof=flat]%
{scrbook}
usepackage{setspace}
usepackage{pdfpages}
%%%%%%%%%%%%%%%%%%%%%%%%%%numéros page%%%%%%%%%%%%
usepackage[automark]{scrlayer-scrpage}% See scrguien.pdf, chapter 5
ihead{headmark}% running head at the inner edge of the page head
ohead*{pagemark}% page number at the outer edge of the page head (plain pages too)
ofoot*{}% no page number at the outer edge of the page footer (plain pages too)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
addtokomafont{pageheadfoot}{scshapesmall}%changed to small caps in headers
addtokomafont{disposition}{normalfont}
addtokomafont{part}{scshapeLARGE}
addtokomafont{chapter}{scshapeHuge}
addtokomafont{section}{scshapelarge}
addtokomafont{subsection}{itshape}
addtokomafont{subsubsection}{itshape}
addtokomafont{paragraph}{scshapesmall}
addtokomafont{subparagraph}{scshapesmall}
%letbfseriesmdseries
usepackage[utf8]{inputenc}
usepackage [french]{babel}
usepackage[T1]{fontenc}
usepackage{mathptmx}
usepackage{chngcntr}
counterwithout{footnote}{chapter}
AtBeginDocument{renewcommand{thepart}{Roman{part}}}
%%%%%%%%%%%%Numérotation des chapitres et section%%%%%%%%%%%%%%%%%%%
makeatletter
@addtoreset{chapter}{part}
makeatother
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
usepackage{lipsum}
begin{document}
chapter{This is a title}
lipsum
end{document}
chapters koma-script
|
show 2 more comments
I would like to remove the dot that appears just after chapter's title. How could I do that? This is my mwe :
documentclass[fontsize=12pt,%
twoside=semi,%
headings=small,%
chapterprefix=true,%
listof=flat]%
{scrbook}
usepackage{setspace}
usepackage{pdfpages}
%%%%%%%%%%%%%%%%%%%%%%%%%%numéros page%%%%%%%%%%%%
usepackage[automark]{scrlayer-scrpage}% See scrguien.pdf, chapter 5
ihead{headmark}% running head at the inner edge of the page head
ohead*{pagemark}% page number at the outer edge of the page head (plain pages too)
ofoot*{}% no page number at the outer edge of the page footer (plain pages too)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
addtokomafont{pageheadfoot}{scshapesmall}%changed to small caps in headers
addtokomafont{disposition}{normalfont}
addtokomafont{part}{scshapeLARGE}
addtokomafont{chapter}{scshapeHuge}
addtokomafont{section}{scshapelarge}
addtokomafont{subsection}{itshape}
addtokomafont{subsubsection}{itshape}
addtokomafont{paragraph}{scshapesmall}
addtokomafont{subparagraph}{scshapesmall}
%letbfseriesmdseries
usepackage[utf8]{inputenc}
usepackage [french]{babel}
usepackage[T1]{fontenc}
usepackage{mathptmx}
usepackage{chngcntr}
counterwithout{footnote}{chapter}
AtBeginDocument{renewcommand{thepart}{Roman{part}}}
%%%%%%%%%%%%Numérotation des chapitres et section%%%%%%%%%%%%%%%%%%%
makeatletter
@addtoreset{chapter}{part}
makeatother
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
usepackage{lipsum}
begin{document}
chapter{This is a title}
lipsum
end{document}
chapters koma-script
1
When I compile your code, I don't get any dots after thechapter-level headers. Which TeX distribution do you employ?
– Mico
2 hours ago
Off-topic: Do not use packagetocloftwith a KOMA-Script class.
– esdd
2 hours ago
I get your dot after the chapter number only using the option "numbers=enddot".
– Typo
2 hours ago
@esd: Why? I already wrote my thesis using that package. I just want to remove the dot after the title number.
– domi
1 hour ago
With an uptodate KOMA-Script version you will get a warning regardingtocloft. It breaks KOMA-Script features. Note, that your code does not produce a dot after the chapter number. Do you have also Roman numerals or letters as chapter numbers? Maybe in an appendix?
– esdd
1 hour ago
|
show 2 more comments
I would like to remove the dot that appears just after chapter's title. How could I do that? This is my mwe :
documentclass[fontsize=12pt,%
twoside=semi,%
headings=small,%
chapterprefix=true,%
listof=flat]%
{scrbook}
usepackage{setspace}
usepackage{pdfpages}
%%%%%%%%%%%%%%%%%%%%%%%%%%numéros page%%%%%%%%%%%%
usepackage[automark]{scrlayer-scrpage}% See scrguien.pdf, chapter 5
ihead{headmark}% running head at the inner edge of the page head
ohead*{pagemark}% page number at the outer edge of the page head (plain pages too)
ofoot*{}% no page number at the outer edge of the page footer (plain pages too)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
addtokomafont{pageheadfoot}{scshapesmall}%changed to small caps in headers
addtokomafont{disposition}{normalfont}
addtokomafont{part}{scshapeLARGE}
addtokomafont{chapter}{scshapeHuge}
addtokomafont{section}{scshapelarge}
addtokomafont{subsection}{itshape}
addtokomafont{subsubsection}{itshape}
addtokomafont{paragraph}{scshapesmall}
addtokomafont{subparagraph}{scshapesmall}
%letbfseriesmdseries
usepackage[utf8]{inputenc}
usepackage [french]{babel}
usepackage[T1]{fontenc}
usepackage{mathptmx}
usepackage{chngcntr}
counterwithout{footnote}{chapter}
AtBeginDocument{renewcommand{thepart}{Roman{part}}}
%%%%%%%%%%%%Numérotation des chapitres et section%%%%%%%%%%%%%%%%%%%
makeatletter
@addtoreset{chapter}{part}
makeatother
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
usepackage{lipsum}
begin{document}
chapter{This is a title}
lipsum
end{document}
chapters koma-script
I would like to remove the dot that appears just after chapter's title. How could I do that? This is my mwe :
documentclass[fontsize=12pt,%
twoside=semi,%
headings=small,%
chapterprefix=true,%
listof=flat]%
{scrbook}
usepackage{setspace}
usepackage{pdfpages}
%%%%%%%%%%%%%%%%%%%%%%%%%%numéros page%%%%%%%%%%%%
usepackage[automark]{scrlayer-scrpage}% See scrguien.pdf, chapter 5
ihead{headmark}% running head at the inner edge of the page head
ohead*{pagemark}% page number at the outer edge of the page head (plain pages too)
ofoot*{}% no page number at the outer edge of the page footer (plain pages too)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
addtokomafont{pageheadfoot}{scshapesmall}%changed to small caps in headers
addtokomafont{disposition}{normalfont}
addtokomafont{part}{scshapeLARGE}
addtokomafont{chapter}{scshapeHuge}
addtokomafont{section}{scshapelarge}
addtokomafont{subsection}{itshape}
addtokomafont{subsubsection}{itshape}
addtokomafont{paragraph}{scshapesmall}
addtokomafont{subparagraph}{scshapesmall}
%letbfseriesmdseries
usepackage[utf8]{inputenc}
usepackage [french]{babel}
usepackage[T1]{fontenc}
usepackage{mathptmx}
usepackage{chngcntr}
counterwithout{footnote}{chapter}
AtBeginDocument{renewcommand{thepart}{Roman{part}}}
%%%%%%%%%%%%Numérotation des chapitres et section%%%%%%%%%%%%%%%%%%%
makeatletter
@addtoreset{chapter}{part}
makeatother
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
usepackage{lipsum}
begin{document}
chapter{This is a title}
lipsum
end{document}
chapters koma-script
chapters koma-script
edited 5 mins ago
domi
asked 2 hours ago
domidomi
64411018
64411018
1
When I compile your code, I don't get any dots after thechapter-level headers. Which TeX distribution do you employ?
– Mico
2 hours ago
Off-topic: Do not use packagetocloftwith a KOMA-Script class.
– esdd
2 hours ago
I get your dot after the chapter number only using the option "numbers=enddot".
– Typo
2 hours ago
@esd: Why? I already wrote my thesis using that package. I just want to remove the dot after the title number.
– domi
1 hour ago
With an uptodate KOMA-Script version you will get a warning regardingtocloft. It breaks KOMA-Script features. Note, that your code does not produce a dot after the chapter number. Do you have also Roman numerals or letters as chapter numbers? Maybe in an appendix?
– esdd
1 hour ago
|
show 2 more comments
1
When I compile your code, I don't get any dots after thechapter-level headers. Which TeX distribution do you employ?
– Mico
2 hours ago
Off-topic: Do not use packagetocloftwith a KOMA-Script class.
– esdd
2 hours ago
I get your dot after the chapter number only using the option "numbers=enddot".
– Typo
2 hours ago
@esd: Why? I already wrote my thesis using that package. I just want to remove the dot after the title number.
– domi
1 hour ago
With an uptodate KOMA-Script version you will get a warning regardingtocloft. It breaks KOMA-Script features. Note, that your code does not produce a dot after the chapter number. Do you have also Roman numerals or letters as chapter numbers? Maybe in an appendix?
– esdd
1 hour ago
1
1
When I compile your code, I don't get any dots after the
chapter-level headers. Which TeX distribution do you employ?– Mico
2 hours ago
When I compile your code, I don't get any dots after the
chapter-level headers. Which TeX distribution do you employ?– Mico
2 hours ago
Off-topic: Do not use package
tocloft with a KOMA-Script class.– esdd
2 hours ago
Off-topic: Do not use package
tocloft with a KOMA-Script class.– esdd
2 hours ago
I get your dot after the chapter number only using the option "numbers=enddot".
– Typo
2 hours ago
I get your dot after the chapter number only using the option "numbers=enddot".
– Typo
2 hours ago
@esd: Why? I already wrote my thesis using that package. I just want to remove the dot after the title number.
– domi
1 hour ago
@esd: Why? I already wrote my thesis using that package. I just want to remove the dot after the title number.
– domi
1 hour ago
With an uptodate KOMA-Script version you will get a warning regarding
tocloft. It breaks KOMA-Script features. Note, that your code does not produce a dot after the chapter number. Do you have also Roman numerals or letters as chapter numbers? Maybe in an appendix?– esdd
1 hour ago
With an uptodate KOMA-Script version you will get a warning regarding
tocloft. It breaks KOMA-Script features. Note, that your code does not produce a dot after the chapter number. Do you have also Roman numerals or letters as chapter numbers? Maybe in an appendix?– esdd
1 hour ago
|
show 2 more comments
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%2f484689%2fhow-to-remove-dots-after-the-chapters-numbers%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%2f484689%2fhow-to-remove-dots-after-the-chapters-numbers%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
When I compile your code, I don't get any dots after the
chapter-level headers. Which TeX distribution do you employ?– Mico
2 hours ago
Off-topic: Do not use package
tocloftwith a KOMA-Script class.– esdd
2 hours ago
I get your dot after the chapter number only using the option "numbers=enddot".
– Typo
2 hours ago
@esd: Why? I already wrote my thesis using that package. I just want to remove the dot after the title number.
– domi
1 hour ago
With an uptodate KOMA-Script version you will get a warning regarding
tocloft. It breaks KOMA-Script features. Note, that your code does not produce a dot after the chapter number. Do you have also Roman numerals or letters as chapter numbers? Maybe in an appendix?– esdd
1 hour ago