How to remove space in section title at KOMA-Script The Next CEO of Stack OverflowFix indent for section titlelatex beamer appendix numberingCreate new section commands (with correct TOC entries) in KOMA-ScriptHow to make a rule under each section title with KOMA-script?LaTeX beamer: pagenumbering appendixKOMA-Script have parskip=full- but no spacing between section title and contentKOMA script replace name of section with the given text/symbolHow do I center the part title at KOMA-script?How do I prevent from a symbol at part title to be in a new lineHow to center headings at KOMA-Script

In excess I'm lethal

How does the mv command work with external drives?

Sending manuscript to multiple publishers

Which kind of appliances can one connect to electric sockets located in an airplane's toilet?

Why does the UK parliament need a vote on the political declaration?

How to prevent changing the value of variable?

"In the right combination" vs "with the right combination"?

If the heap is initialized for security, then why is the stack uninitialized?

How to invert MapIndexed on a ragged structure? How to construct a tree from rules?

Why am I allowed to create multiple unique pointers from a single object?

Indicator light circuit

How to safely derail a train during transit?

WOW air has ceased operation, can I get my tickets refunded?

Which tube will fit a -(700 x 25c) wheel?

Plot of histogram similar to output from @risk

What was the first Unix version to run on a microcomputer?

sp_blitzCache results Memory grants

What does convergence in distribution "in the Gromov–Hausdorff" sense mean?

Several mode to write the symbol of a vector

Is it my responsibility to learn a new technology in my own time my employer wants to implement?

What benefits would be gained by using human laborers instead of drones in deep sea mining?

Bold, vivid family

How does the Z80 determine which peripheral sent an interrupt?

What happened in Rome, when the western empire "fell"?



How to remove space in section title at KOMA-Script



The Next CEO of Stack OverflowFix indent for section titlelatex beamer appendix numberingCreate new section commands (with correct TOC entries) in KOMA-ScriptHow to make a rule under each section title with KOMA-script?LaTeX beamer: pagenumbering appendixKOMA-Script have parskip=full- but no spacing between section title and contentKOMA script replace name of section with the given text/symbolHow do I center the part title at KOMA-script?How do I prevent from a symbol at part title to be in a new lineHow to center headings at KOMA-Script










3















Here is MWE:



documentclassscrartcl
usepackageadforn


renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3. #4 adforn58

hskip#2#3#4%
makeatother

begindocument

sectionABC

enddocument


The output is this:
enter image description here



I want it will be: 1. ABC and not 1 . ABC (no space between the "1" and the ".").

It is possible? and if it's possible, how can I do it?



Thank you!










share|improve this question
























  • sorry, I am not able to compile your MWE (Font OrnementsADF not found). Just a guess: try to terminate every line that might be fragile with a %: ifstr#1section% adforn30 #3. #4 adforn58% %

    – AndiW
    Mar 18 at 19:44
















3















Here is MWE:



documentclassscrartcl
usepackageadforn


renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3. #4 adforn58

hskip#2#3#4%
makeatother

begindocument

sectionABC

enddocument


The output is this:
enter image description here



I want it will be: 1. ABC and not 1 . ABC (no space between the "1" and the ".").

It is possible? and if it's possible, how can I do it?



Thank you!










share|improve this question
























  • sorry, I am not able to compile your MWE (Font OrnementsADF not found). Just a guess: try to terminate every line that might be fragile with a %: ifstr#1section% adforn30 #3. #4 adforn58% %

    – AndiW
    Mar 18 at 19:44














3












3








3








Here is MWE:



documentclassscrartcl
usepackageadforn


renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3. #4 adforn58

hskip#2#3#4%
makeatother

begindocument

sectionABC

enddocument


The output is this:
enter image description here



I want it will be: 1. ABC and not 1 . ABC (no space between the "1" and the ".").

It is possible? and if it's possible, how can I do it?



Thank you!










share|improve this question
















Here is MWE:



documentclassscrartcl
usepackageadforn


renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3. #4 adforn58

hskip#2#3#4%
makeatother

begindocument

sectionABC

enddocument


The output is this:
enter image description here



I want it will be: 1. ABC and not 1 . ABC (no space between the "1" and the ".").

It is possible? and if it's possible, how can I do it?



Thank you!







sectioning numbering koma-script sections-paragraphs






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 18 at 20:35









Schweinebacke

22.1k4577




22.1k4577










asked Mar 18 at 19:37









heblyxheblyx

950919




950919












  • sorry, I am not able to compile your MWE (Font OrnementsADF not found). Just a guess: try to terminate every line that might be fragile with a %: ifstr#1section% adforn30 #3. #4 adforn58% %

    – AndiW
    Mar 18 at 19:44


















  • sorry, I am not able to compile your MWE (Font OrnementsADF not found). Just a guess: try to terminate every line that might be fragile with a %: ifstr#1section% adforn30 #3. #4 adforn58% %

    – AndiW
    Mar 18 at 19:44

















sorry, I am not able to compile your MWE (Font OrnementsADF not found). Just a guess: try to terminate every line that might be fragile with a %: ifstr#1section% adforn30 #3. #4 adforn58% %

– AndiW
Mar 18 at 19:44






sorry, I am not able to compile your MWE (Font OrnementsADF not found). Just a guess: try to terminate every line that might be fragile with a %: ifstr#1section% adforn30 #3. #4 adforn58% %

– AndiW
Mar 18 at 19:44











2 Answers
2






active

oldest

votes


















3














The macro sectionformat contains an enskip at the end. You can redefine it without that:



documentclassscrartcl
usepackageadforn

defsectionformatthesectionautodot% enskip
renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3. #4 adforn58

hskip#2#3#4%
makeatother

begindocument

sectionABC

enddocument



enter image description here







share|improve this answer

























  • Thank you!! What is the csname command?

    – heblyx
    Mar 18 at 19:44






  • 1





    @heblyx It allows you to use a control sequence (a.k.a. macro) by its name. One expansion of csname thesectionendcsname gives thesection. If you simply use thesection it will work as well. The csname thingy is just for dynamically creating these formatting commands.

    – Phelype Oleinik
    Mar 18 at 19:46












  • @PhelypeOleinik - Using the csname ... endcsname machinery would seem to be overkill here. Maybe replace csname thesectionendcsname autodot with thesection.autodot? :-)

    – Mico
    Mar 18 at 20:04












  • @Mico Indeed, unnecessary complication. Done :)

    – Phelype Oleinik
    Mar 18 at 20:09






  • 2





    Note: This could result in two ., if autodot results in adding a .. And IMHO the KOMA-Script guide recommends to add number format parts like the end dot to sectionformat instead of sectionlinesformat. See my answer about how to do this.

    – Schweinebacke
    Mar 18 at 20:32


















4














You should reduce group braces to a minimum and add the . either to the sectionformat:



documentclassscrartcl
usepackageadforn

renewcommand*sectionformatthesection.enskip% replaced autodot by .
renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3#4 adforn58%
hskip#2#3#4%
makeatother

begindocument

sectionABC

enddocument


or select numbers=withdot to add the dot to all section levels:



documentclass[numbers=enddot]scrartcl
usepackageadforn

renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3#4 adforn58%
hskip#2#3#4%


begindocument

sectionABC

enddocument


Both examples result in:



O 1. ABC o



Note: You should not combine a autodot in sectionformat with a hard coded . (neither in autodot nor on sectionlinesformat where it is misplaced by specification), because this could result in two dots.



Please have a look to the KOMA-Script manual for the default of sectionformat and the meaning of numbers=withdot, sectionformat and autodot.



BTW: The makeatother in your example is also not necessary and should be removed (so I did).



Off-Topic: You should also avoid possible spurious white spaces by newlines after } or improve this answer


























  • Thank you!! What is the csname command?

    – heblyx
    Mar 18 at 19:44






  • 1





    @heblyx It allows you to use a control sequence (a.k.a. macro) by its name. One expansion of csname thesectionendcsname gives thesection. If you simply use thesection it will work as well. The csname thingy is just for dynamically creating these formatting commands.

    – Phelype Oleinik
    Mar 18 at 19:46












  • @PhelypeOleinik - Using the csname ... endcsname machinery would seem to be overkill here. Maybe replace csname thesectionendcsname autodot with thesection.autodot? :-)

    – Mico
    Mar 18 at 20:04












  • @Mico Indeed, unnecessary complication. Done :)

    – Phelype Oleinik
    Mar 18 at 20:09






  • 2





    Note: This could result in two ., if autodot results in adding a .. And IMHO the KOMA-Script guide recommends to add number format parts like the end dot to sectionformat instead of sectionlinesformat. See my answer about how to do this.

    – Schweinebacke
    Mar 18 at 20:32















4














You should reduce group braces to a minimum and add the . either to the sectionformat:



documentclassscrartcl
usepackageadforn

renewcommand*sectionformatthesection.enskip% replaced autodot by .
renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3#4 adforn58%
hskip#2#3#4%
makeatother

begindocument

sectionABC

enddocument


or select numbers=withdot to add the dot to all section levels:



documentclass[numbers=enddot]scrartcl
usepackageadforn

renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3#4 adforn58%
hskip#2#3#4%


begindocument

sectionABC

enddocument


Both examples result in:



O 1. ABC o



Note: You should not combine a autodot in sectionformat with a hard coded . (neither in autodot nor on sectionlinesformat where it is misplaced by specification), because this could result in two dots.



Please have a look to the KOMA-Script manual for the default of sectionformat and the meaning of numbers=withdot, sectionformat and autodot.



BTW: The makeatother in your example is also not necessary and should be removed (so I did).



Off-Topic: You should also avoid possible spurious white spaces by newlines after or improve this answer


























  • Your solution is good, but I'm not sure it's good for me. Because I'm Hebrew user - the dot is always at wrong side... at Hebrew it shuold be ".1" and not "1."

    – heblyx
    Mar 18 at 20:42












  • It is possible?

    – heblyx
    Mar 18 at 21:23






  • 1





    @heblyx Cannot reproduce this. See my hebrew example.

    – Schweinebacke
    Mar 19 at 11:42












  • I will replace it. Thank you!!

    – heblyx
    Mar 19 at 14:58




















You should reduce group braces to a minimum and add the . either to the sectionformat:



documentclassscrartcl
usepackageadforn

renewcommand*sectionformatthesection.enskip% replaced autodot by .
renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3#4 adforn58%
hskip#2#3#4%
makeatother

begindocument

sectionABC

enddocument


or select numbers=withdot to add the dot to all section levels:



documentclass[numbers=enddot]scrartcl
usepackageadforn

renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3#4 adforn58%
hskip#2#3#4%


begindocument

sectionABC

enddocument


Both examples result in:



O 1. ABC o



Note: You should not combine a autodot in sectionformat with a hard coded . (neither in autodot nor on sectionlinesformat where it is misplaced by specification), because this could result in two dots.



Please have a look to the KOMA-Script manual for the default of sectionformat and the meaning of numbers=withdot, sectionformat and autodot.



BTW: The makeatother in your example is also not necessary and should be removed (so I did).



Off-Topic: You should also avoid possible spurious white spaces by newlines after or { and by real spaces in the middle of the code.




As a comment claims that this does not work with hebrew:



documentclass[numbers=enddot]scrartcl
usepackagepolyglossia
setmainlanguagehebrew
newfontfamilyhebrewfont[Script=Hebrew]David CLM
newfontfamilyhebrewfonttt[Script=Hebrew]Miriam Mono CLM
newfontfamilyhebrewfontsf[Script=Hebrew]Simple CLM
usepackageadforn

renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3#4 adforn58%
hskip#2#3#4%


begindocument

sectionגדה

enddocument


and



documentclassscrartcl
usepackagepolyglossia
setmainlanguagehebrew
newfontfamilyhebrewfont[Script=Hebrew]David CLM
newfontfamilyhebrewfonttt[Script=Hebrew]Miriam Mono CLM
newfontfamilyhebrewfontsf[Script=Hebrew]Simple CLM
usepackageadforn

renewcommand*sectionformatthesection.enskip% replaced autodot by .
renewcommandsectionlinesformat[4]%
ifstr#1section%
adforn30 #3#4 adforn58%
hskip#2#3#4%


begindocument

sectionגדה

enddocument


both result in:



o הדג .1 O



which seem to be correct for using RL.







share|improve this answer














share|improve this answer



share|improve this answer








edited Mar 19 at 11:58

























answered Mar 18 at 20:23









SchweinebackeSchweinebacke

22.1k4577




22.1k4577












  • Your solution is good, but I'm not sure it's good for me. Because I'm Hebrew user - the dot is always at wrong side... at Hebrew it shuold be ".1" and not "1."

    – heblyx
    Mar 18 at 20:42












  • It is possible?

    – heblyx
    Mar 18 at 21:23






  • 1





    @heblyx Cannot reproduce this. See my hebrew example.

    – Schweinebacke
    Mar 19 at 11:42












  • I will replace it. Thank you!!

    – heblyx
    Mar 19 at 14:58

















  • Your solution is good, but I'm not sure it's good for me. Because I'm Hebrew user - the dot is always at wrong side... at Hebrew it shuold be ".1" and not "1."

    – heblyx
    Mar 18 at 20:42












  • It is possible?

    – heblyx
    Mar 18 at 21:23






  • 1





    @heblyx Cannot reproduce this. See my hebrew example.

    – Schweinebacke
    Mar 19 at 11:42












  • I will replace it. Thank you!!

    – heblyx
    Mar 19 at 14:58
















Your solution is good, but I'm not sure it's good for me. Because I'm Hebrew user - the dot is always at wrong side... at Hebrew it shuold be ".1" and not "1."

– heblyx
Mar 18 at 20:42






Your solution is good, but I'm not sure it's good for me. Because I'm Hebrew user - the dot is always at wrong side... at Hebrew it shuold be ".1" and not "1."

– heblyx
Mar 18 at 20:42














It is possible?

– heblyx
Mar 18 at 21:23





It is possible?

– heblyx
Mar 18 at 21:23




1




1





@heblyx Cannot reproduce this. See my hebrew example.

– Schweinebacke
Mar 19 at 11:42






@heblyx Cannot reproduce this. See my hebrew example.

– Schweinebacke
Mar 19 at 11:42














I will replace it. Thank you!!

– heblyx
Mar 19 at 14:58





I will replace it. Thank you!!

– heblyx
Mar 19 at 14:58

















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%2f480147%2fhow-to-remove-space-in-section-title-at-koma-script%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

Solar Wings Breeze Design and development Specifications (Breeze) References Navigation menu1368-485X"Hang glider: Breeze (Solar Wings)"e

Kathakali Contents Etymology and nomenclature History Repertoire Songs and musical instruments Traditional plays Styles: Sampradayam Training centers and awards Relationship to other dance forms See also Notes References External links Navigation menueThe Illustrated Encyclopedia of Hinduism: A-MSouth Asian Folklore: An EncyclopediaRoutledge International Encyclopedia of Women: Global Women's Issues and KnowledgeKathakali Dance-drama: Where Gods and Demons Come to PlayKathakali Dance-drama: Where Gods and Demons Come to PlayKathakali Dance-drama: Where Gods and Demons Come to Play10.1353/atj.2005.0004The Illustrated Encyclopedia of Hinduism: A-MEncyclopedia of HinduismKathakali Dance-drama: Where Gods and Demons Come to PlaySonic Liturgy: Ritual and Music in Hindu Tradition"The Mirror of Gesture"Kathakali Dance-drama: Where Gods and Demons Come to Play"Kathakali"Indian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceMedieval Indian Literature: An AnthologyThe Oxford Companion to Indian TheatreSouth Asian Folklore: An Encyclopedia : Afghanistan, Bangladesh, India, Nepal, Pakistan, Sri LankaThe Rise of Performance Studies: Rethinking Richard Schechner's Broad SpectrumIndian Theatre: Traditions of PerformanceModern Asian Theatre and Performance 1900-2000Critical Theory and PerformanceBetween Theater and AnthropologyKathakali603847011Indian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceIndian Theatre: Traditions of PerformanceBetween Theater and AnthropologyBetween Theater and AnthropologyNambeesan Smaraka AwardsArchivedThe Cambridge Guide to TheatreRoutledge International Encyclopedia of Women: Global Women's Issues and KnowledgeThe Garland Encyclopedia of World Music: South Asia : the Indian subcontinentThe Ethos of Noh: Actors and Their Art10.2307/1145740By Means of Performance: Intercultural Studies of Theatre and Ritual10.1017/s204912550000100xReconceiving the Renaissance: A Critical ReaderPerformance TheoryListening to Theatre: The Aural Dimension of Beijing Opera10.2307/1146013Kathakali: The Art of the Non-WorldlyOn KathakaliKathakali, the dance theatreThe Kathakali Complex: Performance & StructureKathakali Dance-Drama: Where Gods and Demons Come to Play10.1093/obo/9780195399318-0071Drama and Ritual of Early Hinduism"In the Shadow of Hollywood Orientalism: Authentic East Indian Dancing"10.1080/08949460490274013Sanskrit Play Production in Ancient IndiaIndian Music: History and StructureBharata, the Nāṭyaśāstra233639306Table of Contents2238067286469807Dance In Indian Painting10.2307/32047833204783Kathakali Dance-Theatre: A Visual Narrative of Sacred Indian MimeIndian Classical Dance: The Renaissance and BeyondKathakali: an indigenous art-form of Keralaeee

Method to test if a number is a perfect power? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 23, 2019 at 00:00UTC (8:00pm US/Eastern)Detecting perfect squares faster than by extracting square rooteffective way to get the integer sequence A181392 from oeisA rarely mentioned fact about perfect powersHow many numbers such $n$ are there that $n<100,lfloorsqrtn rfloor mid n$Check perfect squareness by modulo division against multiple basesFor what pair of integers $(a,b)$ is $3^a + 7^b$ a perfect square.Do there exist any positive integers $n$ such that $lfloore^nrfloor$ is a perfect power? What is the probability that one exists?finding perfect power factors of an integerProve that the sequence contains a perfect square for any natural number $m $ in the domain of $f$ .Counting Perfect Powers