Section title with runin and KOMA class?












4















I would like to have section titles with runin so that there is no newline after the section title. This can be done with



documentclass{article}
usepackage{titlesec}
title{section}[runin]{large}{thesection}{1em}{}
begin{document}
section{First section}
This text follows on the same line as "First section"
end{document}


However, I am using the KOMA scrartcl class and use of the titlesec package is discouraged (see Incompatibilities between KOMA-Script and titlesec).



I have searched through the KOMA-Script documentation, but cannot find anything like the runin option in titlesec. How can I achieve this functionality while using a KOMA-Script class?










share|improve this question





























    4















    I would like to have section titles with runin so that there is no newline after the section title. This can be done with



    documentclass{article}
    usepackage{titlesec}
    title{section}[runin]{large}{thesection}{1em}{}
    begin{document}
    section{First section}
    This text follows on the same line as "First section"
    end{document}


    However, I am using the KOMA scrartcl class and use of the titlesec package is discouraged (see Incompatibilities between KOMA-Script and titlesec).



    I have searched through the KOMA-Script documentation, but cannot find anything like the runin option in titlesec. How can I achieve this functionality while using a KOMA-Script class?










    share|improve this question



























      4












      4








      4








      I would like to have section titles with runin so that there is no newline after the section title. This can be done with



      documentclass{article}
      usepackage{titlesec}
      title{section}[runin]{large}{thesection}{1em}{}
      begin{document}
      section{First section}
      This text follows on the same line as "First section"
      end{document}


      However, I am using the KOMA scrartcl class and use of the titlesec package is discouraged (see Incompatibilities between KOMA-Script and titlesec).



      I have searched through the KOMA-Script documentation, but cannot find anything like the runin option in titlesec. How can I achieve this functionality while using a KOMA-Script class?










      share|improve this question
















      I would like to have section titles with runin so that there is no newline after the section title. This can be done with



      documentclass{article}
      usepackage{titlesec}
      title{section}[runin]{large}{thesection}{1em}{}
      begin{document}
      section{First section}
      This text follows on the same line as "First section"
      end{document}


      However, I am using the KOMA scrartcl class and use of the titlesec package is discouraged (see Incompatibilities between KOMA-Script and titlesec).



      I have searched through the KOMA-Script documentation, but cannot find anything like the runin option in titlesec. How can I achieve this functionality while using a KOMA-Script class?







      koma-script titlesec






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 13 '17 at 12:35









      Community

      1




      1










      asked Aug 31 '14 at 20:18









      EP_GuyEP_Guy

      385




      385






















          3 Answers
          3






          active

          oldest

          votes


















          2














          1 Older version of KOMAScript



          You have to redefine the definition of section, subsection etc. You use a negativ values to set runin heading, like in the standard article-class. I have copied the definition of headings from scrartcl sometimes in the past. Be aware that this solution may break if scrartclis changed.



          If you take a look at page 351 in the English manual for Komascript, you will see that there are several commands for changing the space above and below chapterand part. Hopefully, we will see a similar command for section and her sisters.



          Here, I have redefined both section and subsection to be runin-header.



          documentclass{scrartcl}

          makeatletter
          renewcommandsection{@startsection{section}{1}{z@}%
          {-1.5ex}%
          {-1em}%{2.3ex @plus.2ex}% < - negative value here negative value here,
          % the values behind % are the original.
          % no use for rubber values, use a fix value to set the
          % distance to between heading and the text
          {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
          setlength{parfillskip}{z@ plus 1fil}fi
          raggedsectionsectfontnobreaksize@section}%
          }

          renewcommandsubsection{@startsection{subsection}{1}{z@}%
          {-1.5ex @plus -1ex @minus -.2ex}%
          {-1em}%{2.3ex @plus.2ex}% <- negative value here, the values behind % are the original
          {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
          setlength{parfillskip}{z@ plus 1fil}fi
          raggedsectionnormalfontsectfontnobreaksize@section}%
          }
          makeatother

          begin{document}
          section{First section}
          This text follows on the same line as "First section"
          end{document}


          You use the ordinary addtokomafont etc. to change the font, colour etc. ANd of course, you have to fiddle around with the figures to get the space above you prefer.



          2. Never versions of KOMAScript



          I refer to Johannes_B’s answer below.



          For the sake of completeness, I will bring your attention to page 363 ff. in the English KOMAScript manual as of 2015-10-03. The author has (from version 3.16?) added the possibility to interface to section{} and her sisters by the four commands:



          DeclareSectionCommand[attributes]{name}
          DeclareNewSectionCommand[attributes]{name}
          RedeclareSectionCommand[attributes]{name}
          ProvideSectionCommand[attributes]{name}


          You may use this commands to define totally new sectioning commands, but also to redefine the existing ones, including the possibility to easily define the section{}-command to be a run-in heading.



          RedeclareSectionCommand[%
          afterskip=-10pt plus -1sp minus 1sp% using rubber is optional
          ]{section}


          Just use a negative value as the first afterskip value ( I have used -10pt here).






          share|improve this answer


























          • It's unfortunate the KOMA classes don't support this directly. However, your answer seems to be the best option for now.

            – EP_Guy
            Sep 1 '14 at 17:49











          • @EP_Guy If you compare to the standard LaTeX classes, it is easy to change many of KOMAscript's pre set parameters. And you a guaranteed a consistent and workable result. To protect the users from the most horrible results, some parameters are not easily changed.

            – Sveinung
            Sep 1 '14 at 18:09



















          4














          The author of KOMA-script added an easy to use interface to redeclare sectioning commands (chapters and parts as well). In my opinion, it is much simpler than using titlesec ;-)



          Of course, you need a fairly recent KOMA-bundle.



          documentclass{scrartcl}
          RedeclareSectionCommand[afterskip=-1em,%negative value -> runin
          font=largenormalfont%match the font of your example
          ]{section}
          begin{document}
          section{First section}
          This text follows on the same line as "First section"
          end{document}





          share|improve this answer
























          • Level 10 nonsense, a headline you can't distinguish from text. But however, +1 for Johannes_B for a good answer.

            – Keks Dose
            Feb 10 '15 at 15:27



















          0














          As from v3.26, one may also use the switch runin.



          RedeclareSectionCommand[runin=on]{section}





          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%2f198830%2fsection-title-with-runin-and-koma-class%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            2














            1 Older version of KOMAScript



            You have to redefine the definition of section, subsection etc. You use a negativ values to set runin heading, like in the standard article-class. I have copied the definition of headings from scrartcl sometimes in the past. Be aware that this solution may break if scrartclis changed.



            If you take a look at page 351 in the English manual for Komascript, you will see that there are several commands for changing the space above and below chapterand part. Hopefully, we will see a similar command for section and her sisters.



            Here, I have redefined both section and subsection to be runin-header.



            documentclass{scrartcl}

            makeatletter
            renewcommandsection{@startsection{section}{1}{z@}%
            {-1.5ex}%
            {-1em}%{2.3ex @plus.2ex}% < - negative value here negative value here,
            % the values behind % are the original.
            % no use for rubber values, use a fix value to set the
            % distance to between heading and the text
            {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
            setlength{parfillskip}{z@ plus 1fil}fi
            raggedsectionsectfontnobreaksize@section}%
            }

            renewcommandsubsection{@startsection{subsection}{1}{z@}%
            {-1.5ex @plus -1ex @minus -.2ex}%
            {-1em}%{2.3ex @plus.2ex}% <- negative value here, the values behind % are the original
            {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
            setlength{parfillskip}{z@ plus 1fil}fi
            raggedsectionnormalfontsectfontnobreaksize@section}%
            }
            makeatother

            begin{document}
            section{First section}
            This text follows on the same line as "First section"
            end{document}


            You use the ordinary addtokomafont etc. to change the font, colour etc. ANd of course, you have to fiddle around with the figures to get the space above you prefer.



            2. Never versions of KOMAScript



            I refer to Johannes_B’s answer below.



            For the sake of completeness, I will bring your attention to page 363 ff. in the English KOMAScript manual as of 2015-10-03. The author has (from version 3.16?) added the possibility to interface to section{} and her sisters by the four commands:



            DeclareSectionCommand[attributes]{name}
            DeclareNewSectionCommand[attributes]{name}
            RedeclareSectionCommand[attributes]{name}
            ProvideSectionCommand[attributes]{name}


            You may use this commands to define totally new sectioning commands, but also to redefine the existing ones, including the possibility to easily define the section{}-command to be a run-in heading.



            RedeclareSectionCommand[%
            afterskip=-10pt plus -1sp minus 1sp% using rubber is optional
            ]{section}


            Just use a negative value as the first afterskip value ( I have used -10pt here).






            share|improve this answer


























            • It's unfortunate the KOMA classes don't support this directly. However, your answer seems to be the best option for now.

              – EP_Guy
              Sep 1 '14 at 17:49











            • @EP_Guy If you compare to the standard LaTeX classes, it is easy to change many of KOMAscript's pre set parameters. And you a guaranteed a consistent and workable result. To protect the users from the most horrible results, some parameters are not easily changed.

              – Sveinung
              Sep 1 '14 at 18:09
















            2














            1 Older version of KOMAScript



            You have to redefine the definition of section, subsection etc. You use a negativ values to set runin heading, like in the standard article-class. I have copied the definition of headings from scrartcl sometimes in the past. Be aware that this solution may break if scrartclis changed.



            If you take a look at page 351 in the English manual for Komascript, you will see that there are several commands for changing the space above and below chapterand part. Hopefully, we will see a similar command for section and her sisters.



            Here, I have redefined both section and subsection to be runin-header.



            documentclass{scrartcl}

            makeatletter
            renewcommandsection{@startsection{section}{1}{z@}%
            {-1.5ex}%
            {-1em}%{2.3ex @plus.2ex}% < - negative value here negative value here,
            % the values behind % are the original.
            % no use for rubber values, use a fix value to set the
            % distance to between heading and the text
            {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
            setlength{parfillskip}{z@ plus 1fil}fi
            raggedsectionsectfontnobreaksize@section}%
            }

            renewcommandsubsection{@startsection{subsection}{1}{z@}%
            {-1.5ex @plus -1ex @minus -.2ex}%
            {-1em}%{2.3ex @plus.2ex}% <- negative value here, the values behind % are the original
            {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
            setlength{parfillskip}{z@ plus 1fil}fi
            raggedsectionnormalfontsectfontnobreaksize@section}%
            }
            makeatother

            begin{document}
            section{First section}
            This text follows on the same line as "First section"
            end{document}


            You use the ordinary addtokomafont etc. to change the font, colour etc. ANd of course, you have to fiddle around with the figures to get the space above you prefer.



            2. Never versions of KOMAScript



            I refer to Johannes_B’s answer below.



            For the sake of completeness, I will bring your attention to page 363 ff. in the English KOMAScript manual as of 2015-10-03. The author has (from version 3.16?) added the possibility to interface to section{} and her sisters by the four commands:



            DeclareSectionCommand[attributes]{name}
            DeclareNewSectionCommand[attributes]{name}
            RedeclareSectionCommand[attributes]{name}
            ProvideSectionCommand[attributes]{name}


            You may use this commands to define totally new sectioning commands, but also to redefine the existing ones, including the possibility to easily define the section{}-command to be a run-in heading.



            RedeclareSectionCommand[%
            afterskip=-10pt plus -1sp minus 1sp% using rubber is optional
            ]{section}


            Just use a negative value as the first afterskip value ( I have used -10pt here).






            share|improve this answer


























            • It's unfortunate the KOMA classes don't support this directly. However, your answer seems to be the best option for now.

              – EP_Guy
              Sep 1 '14 at 17:49











            • @EP_Guy If you compare to the standard LaTeX classes, it is easy to change many of KOMAscript's pre set parameters. And you a guaranteed a consistent and workable result. To protect the users from the most horrible results, some parameters are not easily changed.

              – Sveinung
              Sep 1 '14 at 18:09














            2












            2








            2







            1 Older version of KOMAScript



            You have to redefine the definition of section, subsection etc. You use a negativ values to set runin heading, like in the standard article-class. I have copied the definition of headings from scrartcl sometimes in the past. Be aware that this solution may break if scrartclis changed.



            If you take a look at page 351 in the English manual for Komascript, you will see that there are several commands for changing the space above and below chapterand part. Hopefully, we will see a similar command for section and her sisters.



            Here, I have redefined both section and subsection to be runin-header.



            documentclass{scrartcl}

            makeatletter
            renewcommandsection{@startsection{section}{1}{z@}%
            {-1.5ex}%
            {-1em}%{2.3ex @plus.2ex}% < - negative value here negative value here,
            % the values behind % are the original.
            % no use for rubber values, use a fix value to set the
            % distance to between heading and the text
            {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
            setlength{parfillskip}{z@ plus 1fil}fi
            raggedsectionsectfontnobreaksize@section}%
            }

            renewcommandsubsection{@startsection{subsection}{1}{z@}%
            {-1.5ex @plus -1ex @minus -.2ex}%
            {-1em}%{2.3ex @plus.2ex}% <- negative value here, the values behind % are the original
            {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
            setlength{parfillskip}{z@ plus 1fil}fi
            raggedsectionnormalfontsectfontnobreaksize@section}%
            }
            makeatother

            begin{document}
            section{First section}
            This text follows on the same line as "First section"
            end{document}


            You use the ordinary addtokomafont etc. to change the font, colour etc. ANd of course, you have to fiddle around with the figures to get the space above you prefer.



            2. Never versions of KOMAScript



            I refer to Johannes_B’s answer below.



            For the sake of completeness, I will bring your attention to page 363 ff. in the English KOMAScript manual as of 2015-10-03. The author has (from version 3.16?) added the possibility to interface to section{} and her sisters by the four commands:



            DeclareSectionCommand[attributes]{name}
            DeclareNewSectionCommand[attributes]{name}
            RedeclareSectionCommand[attributes]{name}
            ProvideSectionCommand[attributes]{name}


            You may use this commands to define totally new sectioning commands, but also to redefine the existing ones, including the possibility to easily define the section{}-command to be a run-in heading.



            RedeclareSectionCommand[%
            afterskip=-10pt plus -1sp minus 1sp% using rubber is optional
            ]{section}


            Just use a negative value as the first afterskip value ( I have used -10pt here).






            share|improve this answer















            1 Older version of KOMAScript



            You have to redefine the definition of section, subsection etc. You use a negativ values to set runin heading, like in the standard article-class. I have copied the definition of headings from scrartcl sometimes in the past. Be aware that this solution may break if scrartclis changed.



            If you take a look at page 351 in the English manual for Komascript, you will see that there are several commands for changing the space above and below chapterand part. Hopefully, we will see a similar command for section and her sisters.



            Here, I have redefined both section and subsection to be runin-header.



            documentclass{scrartcl}

            makeatletter
            renewcommandsection{@startsection{section}{1}{z@}%
            {-1.5ex}%
            {-1em}%{2.3ex @plus.2ex}% < - negative value here negative value here,
            % the values behind % are the original.
            % no use for rubber values, use a fix value to set the
            % distance to between heading and the text
            {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
            setlength{parfillskip}{z@ plus 1fil}fi
            raggedsectionsectfontnobreaksize@section}%
            }

            renewcommandsubsection{@startsection{subsection}{1}{z@}%
            {-1.5ex @plus -1ex @minus -.2ex}%
            {-1em}%{2.3ex @plus.2ex}% <- negative value here, the values behind % are the original
            {ifnum scr@compatibility>@nameuse{scr@v@2.96}relax
            setlength{parfillskip}{z@ plus 1fil}fi
            raggedsectionnormalfontsectfontnobreaksize@section}%
            }
            makeatother

            begin{document}
            section{First section}
            This text follows on the same line as "First section"
            end{document}


            You use the ordinary addtokomafont etc. to change the font, colour etc. ANd of course, you have to fiddle around with the figures to get the space above you prefer.



            2. Never versions of KOMAScript



            I refer to Johannes_B’s answer below.



            For the sake of completeness, I will bring your attention to page 363 ff. in the English KOMAScript manual as of 2015-10-03. The author has (from version 3.16?) added the possibility to interface to section{} and her sisters by the four commands:



            DeclareSectionCommand[attributes]{name}
            DeclareNewSectionCommand[attributes]{name}
            RedeclareSectionCommand[attributes]{name}
            ProvideSectionCommand[attributes]{name}


            You may use this commands to define totally new sectioning commands, but also to redefine the existing ones, including the possibility to easily define the section{}-command to be a run-in heading.



            RedeclareSectionCommand[%
            afterskip=-10pt plus -1sp minus 1sp% using rubber is optional
            ]{section}


            Just use a negative value as the first afterskip value ( I have used -10pt here).







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited Jan 19 '16 at 18:08

























            answered Aug 31 '14 at 21:59









            SveinungSveinung

            11k23256




            11k23256













            • It's unfortunate the KOMA classes don't support this directly. However, your answer seems to be the best option for now.

              – EP_Guy
              Sep 1 '14 at 17:49











            • @EP_Guy If you compare to the standard LaTeX classes, it is easy to change many of KOMAscript's pre set parameters. And you a guaranteed a consistent and workable result. To protect the users from the most horrible results, some parameters are not easily changed.

              – Sveinung
              Sep 1 '14 at 18:09



















            • It's unfortunate the KOMA classes don't support this directly. However, your answer seems to be the best option for now.

              – EP_Guy
              Sep 1 '14 at 17:49











            • @EP_Guy If you compare to the standard LaTeX classes, it is easy to change many of KOMAscript's pre set parameters. And you a guaranteed a consistent and workable result. To protect the users from the most horrible results, some parameters are not easily changed.

              – Sveinung
              Sep 1 '14 at 18:09

















            It's unfortunate the KOMA classes don't support this directly. However, your answer seems to be the best option for now.

            – EP_Guy
            Sep 1 '14 at 17:49





            It's unfortunate the KOMA classes don't support this directly. However, your answer seems to be the best option for now.

            – EP_Guy
            Sep 1 '14 at 17:49













            @EP_Guy If you compare to the standard LaTeX classes, it is easy to change many of KOMAscript's pre set parameters. And you a guaranteed a consistent and workable result. To protect the users from the most horrible results, some parameters are not easily changed.

            – Sveinung
            Sep 1 '14 at 18:09





            @EP_Guy If you compare to the standard LaTeX classes, it is easy to change many of KOMAscript's pre set parameters. And you a guaranteed a consistent and workable result. To protect the users from the most horrible results, some parameters are not easily changed.

            – Sveinung
            Sep 1 '14 at 18:09











            4














            The author of KOMA-script added an easy to use interface to redeclare sectioning commands (chapters and parts as well). In my opinion, it is much simpler than using titlesec ;-)



            Of course, you need a fairly recent KOMA-bundle.



            documentclass{scrartcl}
            RedeclareSectionCommand[afterskip=-1em,%negative value -> runin
            font=largenormalfont%match the font of your example
            ]{section}
            begin{document}
            section{First section}
            This text follows on the same line as "First section"
            end{document}





            share|improve this answer
























            • Level 10 nonsense, a headline you can't distinguish from text. But however, +1 for Johannes_B for a good answer.

              – Keks Dose
              Feb 10 '15 at 15:27
















            4














            The author of KOMA-script added an easy to use interface to redeclare sectioning commands (chapters and parts as well). In my opinion, it is much simpler than using titlesec ;-)



            Of course, you need a fairly recent KOMA-bundle.



            documentclass{scrartcl}
            RedeclareSectionCommand[afterskip=-1em,%negative value -> runin
            font=largenormalfont%match the font of your example
            ]{section}
            begin{document}
            section{First section}
            This text follows on the same line as "First section"
            end{document}





            share|improve this answer
























            • Level 10 nonsense, a headline you can't distinguish from text. But however, +1 for Johannes_B for a good answer.

              – Keks Dose
              Feb 10 '15 at 15:27














            4












            4








            4







            The author of KOMA-script added an easy to use interface to redeclare sectioning commands (chapters and parts as well). In my opinion, it is much simpler than using titlesec ;-)



            Of course, you need a fairly recent KOMA-bundle.



            documentclass{scrartcl}
            RedeclareSectionCommand[afterskip=-1em,%negative value -> runin
            font=largenormalfont%match the font of your example
            ]{section}
            begin{document}
            section{First section}
            This text follows on the same line as "First section"
            end{document}





            share|improve this answer













            The author of KOMA-script added an easy to use interface to redeclare sectioning commands (chapters and parts as well). In my opinion, it is much simpler than using titlesec ;-)



            Of course, you need a fairly recent KOMA-bundle.



            documentclass{scrartcl}
            RedeclareSectionCommand[afterskip=-1em,%negative value -> runin
            font=largenormalfont%match the font of your example
            ]{section}
            begin{document}
            section{First section}
            This text follows on the same line as "First section"
            end{document}






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Feb 10 '15 at 14:12









            Johannes_BJohannes_B

            21k351203




            21k351203













            • Level 10 nonsense, a headline you can't distinguish from text. But however, +1 for Johannes_B for a good answer.

              – Keks Dose
              Feb 10 '15 at 15:27



















            • Level 10 nonsense, a headline you can't distinguish from text. But however, +1 for Johannes_B for a good answer.

              – Keks Dose
              Feb 10 '15 at 15:27

















            Level 10 nonsense, a headline you can't distinguish from text. But however, +1 for Johannes_B for a good answer.

            – Keks Dose
            Feb 10 '15 at 15:27





            Level 10 nonsense, a headline you can't distinguish from text. But however, +1 for Johannes_B for a good answer.

            – Keks Dose
            Feb 10 '15 at 15:27











            0














            As from v3.26, one may also use the switch runin.



            RedeclareSectionCommand[runin=on]{section}





            share|improve this answer




























              0














              As from v3.26, one may also use the switch runin.



              RedeclareSectionCommand[runin=on]{section}





              share|improve this answer


























                0












                0








                0







                As from v3.26, one may also use the switch runin.



                RedeclareSectionCommand[runin=on]{section}





                share|improve this answer













                As from v3.26, one may also use the switch runin.



                RedeclareSectionCommand[runin=on]{section}






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered 1 hour ago









                natural stupiditynatural stupidity

                22518




                22518






























                    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%2f198830%2fsection-title-with-runin-and-koma-class%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

                    Lallio

                    Unable to find Lightning Node

                    Futebolista