Legal-style indentation with text on the same line as the subsection title The Next CEO of Stack OverflowHow can I get legal style indentation on section, subsection, subsubsec.. using titlesec?automatic legal-style indentation in all ((sub)sub)sectionssubsection…-result in line with following textHow can I get legal style indentation on section, subsection, subsubsec.. using titlesec?Subsection starting in same line as subsection nameSection title in line with text, how to?Remove subsection text indentationautomatic legal-style indentation in all ((sub)sub)sectionsItalic style for subsection title, not for the numberHelp with section title styleHow to fill section on titlesecsectioning - section and subsection starting in the same line

How to make a variable always equal to the result of some calculations?

What can we do to stop prior company from asking us questions?

Only print output after finding pattern

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

How to count occurrences of text in a file?

How to write the block matrix in LaTex?

How do I get the green key off the shelf in the Dobby level of Lego Harry Potter 2?

Solution of this Diophantine Equation

How easy is it to start Magic from scratch?

What's the point of interval inversion?

Increase performance creating Mandelbrot set in python

How should I support this large drywall patch?

Trouble understanding the speech of overseas colleagues

MAZDA 3 2006 (UK) - poor acceleration then takes off at 3250 revs

How to be diplomatic in refusing to write code that breaches the privacy of our users

Are there languages with no euphemisms?

Does the Brexit deal have to be agreed by both Houses?

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

Return the Closest Prime Number

How to safely derail a train during transit?

If I blow insulation everywhere in my attic except the door trap, will heat escape through it?

Visit to the USA with ESTA approved before trip to Iran

I believe this to be a fraud - hired, then asked to cash check and send cash as Bitcoin

Apart from "berlinern", do any other German dialects have a corresponding verb?



Legal-style indentation with text on the same line as the subsection title



The Next CEO of Stack OverflowHow can I get legal style indentation on section, subsection, subsubsec.. using titlesec?automatic legal-style indentation in all ((sub)sub)sectionssubsection…-result in line with following textHow can I get legal style indentation on section, subsection, subsubsec.. using titlesec?Subsection starting in same line as subsection nameSection title in line with text, how to?Remove subsection text indentationautomatic legal-style indentation in all ((sub)sub)sectionsItalic style for subsection title, not for the numberHelp with section title styleHow to fill section on titlesecsectioning - section and subsection starting in the same line










0















A legal document requires the indentation format as in Question How can I get legal style indentation on section, subsection, subsubsec.. using titlesec?.
I'm using the answer to the related question automatic legal-style indentation in all ((sub)sub)sections.



The issue is with having text on the same line as the subsection number. If I put subsectionLorem ipsum bla bla ..., this breaks the page formatting. My other approach is to modify the @David Carlisle answer by changing titleformatsubsection[block]thesubsection1em to [runin]. However, this produces an ident before the subsection. Here's the code



documentclassarticle
usepackagechangepage,lipsum,titlesec% http://ctan.org/pkg/changepage,lipsum,titlesec
titleformatsection[block]bfseriesthesection.1em
titleformatsubsection[block]thesubsection1em
titleformatsubsubsection[runin]thesubsubsection1em
titlespacing*subsection leftmargin3.25ex plus 1ex minus .2ex1.5ex plus .2ex
titlespacing*subsubsection leftmargin3.25ex plus 1ex minus .2ex1.5ex plus .2ex

makeatletter
letxsectionsection
defsectionpar
leftmargin0p@
leftskipleftmargin
@totalleftmarginleftmarginlinewidthtextwidth
xsection
letxsubsectionsubsection
defsubsectionpar
leftmargin20p@
leftskipleftmargin
@totalleftmarginleftmarginlinewidthdimexprtextwidth-leftmarginrelax
xsubsection
letxsubsubsectionsubsubsection
defsubsubsectionpar
leftmargin40p@
leftskipleftmargin
@totalleftmarginleftmarginlinewidthdimexprtextwidth-leftmarginrelax
xsubsubsection

begindocument
sectionA section
lipsum[1]
subsectionA subsection
lipsum[2]
subsubsection
lipsum[3]
enddocument


And here's the result:
enter image description here
Question: How to get rid of the ident before the subsection?










share|improve this question







New contributor




Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
























    0















    A legal document requires the indentation format as in Question How can I get legal style indentation on section, subsection, subsubsec.. using titlesec?.
    I'm using the answer to the related question automatic legal-style indentation in all ((sub)sub)sections.



    The issue is with having text on the same line as the subsection number. If I put subsectionLorem ipsum bla bla ..., this breaks the page formatting. My other approach is to modify the @David Carlisle answer by changing titleformatsubsection[block]thesubsection1em to [runin]. However, this produces an ident before the subsection. Here's the code



    documentclassarticle
    usepackagechangepage,lipsum,titlesec% http://ctan.org/pkg/changepage,lipsum,titlesec
    titleformatsection[block]bfseriesthesection.1em
    titleformatsubsection[block]thesubsection1em
    titleformatsubsubsection[runin]thesubsubsection1em
    titlespacing*subsection leftmargin3.25ex plus 1ex minus .2ex1.5ex plus .2ex
    titlespacing*subsubsection leftmargin3.25ex plus 1ex minus .2ex1.5ex plus .2ex

    makeatletter
    letxsectionsection
    defsectionpar
    leftmargin0p@
    leftskipleftmargin
    @totalleftmarginleftmarginlinewidthtextwidth
    xsection
    letxsubsectionsubsection
    defsubsectionpar
    leftmargin20p@
    leftskipleftmargin
    @totalleftmarginleftmarginlinewidthdimexprtextwidth-leftmarginrelax
    xsubsection
    letxsubsubsectionsubsubsection
    defsubsubsectionpar
    leftmargin40p@
    leftskipleftmargin
    @totalleftmarginleftmarginlinewidthdimexprtextwidth-leftmarginrelax
    xsubsubsection

    begindocument
    sectionA section
    lipsum[1]
    subsectionA subsection
    lipsum[2]
    subsubsection
    lipsum[3]
    enddocument


    And here's the result:
    enter image description here
    Question: How to get rid of the ident before the subsection?










    share|improve this question







    New contributor




    Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.






















      0












      0








      0








      A legal document requires the indentation format as in Question How can I get legal style indentation on section, subsection, subsubsec.. using titlesec?.
      I'm using the answer to the related question automatic legal-style indentation in all ((sub)sub)sections.



      The issue is with having text on the same line as the subsection number. If I put subsectionLorem ipsum bla bla ..., this breaks the page formatting. My other approach is to modify the @David Carlisle answer by changing titleformatsubsection[block]thesubsection1em to [runin]. However, this produces an ident before the subsection. Here's the code



      documentclassarticle
      usepackagechangepage,lipsum,titlesec% http://ctan.org/pkg/changepage,lipsum,titlesec
      titleformatsection[block]bfseriesthesection.1em
      titleformatsubsection[block]thesubsection1em
      titleformatsubsubsection[runin]thesubsubsection1em
      titlespacing*subsection leftmargin3.25ex plus 1ex minus .2ex1.5ex plus .2ex
      titlespacing*subsubsection leftmargin3.25ex plus 1ex minus .2ex1.5ex plus .2ex

      makeatletter
      letxsectionsection
      defsectionpar
      leftmargin0p@
      leftskipleftmargin
      @totalleftmarginleftmarginlinewidthtextwidth
      xsection
      letxsubsectionsubsection
      defsubsectionpar
      leftmargin20p@
      leftskipleftmargin
      @totalleftmarginleftmarginlinewidthdimexprtextwidth-leftmarginrelax
      xsubsection
      letxsubsubsectionsubsubsection
      defsubsubsectionpar
      leftmargin40p@
      leftskipleftmargin
      @totalleftmarginleftmarginlinewidthdimexprtextwidth-leftmarginrelax
      xsubsubsection

      begindocument
      sectionA section
      lipsum[1]
      subsectionA subsection
      lipsum[2]
      subsubsection
      lipsum[3]
      enddocument


      And here's the result:
      enter image description here
      Question: How to get rid of the ident before the subsection?










      share|improve this question







      New contributor




      Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.












      A legal document requires the indentation format as in Question How can I get legal style indentation on section, subsection, subsubsec.. using titlesec?.
      I'm using the answer to the related question automatic legal-style indentation in all ((sub)sub)sections.



      The issue is with having text on the same line as the subsection number. If I put subsectionLorem ipsum bla bla ..., this breaks the page formatting. My other approach is to modify the @David Carlisle answer by changing titleformatsubsection[block]thesubsection1em to [runin]. However, this produces an ident before the subsection. Here's the code



      documentclassarticle
      usepackagechangepage,lipsum,titlesec% http://ctan.org/pkg/changepage,lipsum,titlesec
      titleformatsection[block]bfseriesthesection.1em
      titleformatsubsection[block]thesubsection1em
      titleformatsubsubsection[runin]thesubsubsection1em
      titlespacing*subsection leftmargin3.25ex plus 1ex minus .2ex1.5ex plus .2ex
      titlespacing*subsubsection leftmargin3.25ex plus 1ex minus .2ex1.5ex plus .2ex

      makeatletter
      letxsectionsection
      defsectionpar
      leftmargin0p@
      leftskipleftmargin
      @totalleftmarginleftmarginlinewidthtextwidth
      xsection
      letxsubsectionsubsection
      defsubsectionpar
      leftmargin20p@
      leftskipleftmargin
      @totalleftmarginleftmarginlinewidthdimexprtextwidth-leftmarginrelax
      xsubsection
      letxsubsubsectionsubsubsection
      defsubsubsectionpar
      leftmargin40p@
      leftskipleftmargin
      @totalleftmarginleftmarginlinewidthdimexprtextwidth-leftmarginrelax
      xsubsubsection

      begindocument
      sectionA section
      lipsum[1]
      subsectionA subsection
      lipsum[2]
      subsubsection
      lipsum[3]
      enddocument


      And here's the result:
      enter image description here
      Question: How to get rid of the ident before the subsection?







      sectioning formatting titlesec






      share|improve this question







      New contributor




      Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.











      share|improve this question







      New contributor




      Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      share|improve this question




      share|improve this question






      New contributor




      Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.









      asked 11 hours ago









      Tupolev._Tupolev._

      1011




      1011




      New contributor




      Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.





      New contributor





      Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.






      Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
      Check out our Code of Conduct.




















          1 Answer
          1






          active

          oldest

          votes


















          0














          Setting



          titlespacing*subsection 0em3.25ex plus 1ex minus .2ex1.5ex plus .2ex


          gives the correct result
          enter image description here






          share|improve this answer








          New contributor




          Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.




















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



            );






            Tupolev._ is a new contributor. Be nice, and check out our Code of Conduct.









            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2ftex.stackexchange.com%2fquestions%2f481919%2flegal-style-indentation-with-text-on-the-same-line-as-the-subsection-title%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            Setting



            titlespacing*subsection 0em3.25ex plus 1ex minus .2ex1.5ex plus .2ex


            gives the correct result
            enter image description here






            share|improve this answer








            New contributor




            Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.
























              0














              Setting



              titlespacing*subsection 0em3.25ex plus 1ex minus .2ex1.5ex plus .2ex


              gives the correct result
              enter image description here






              share|improve this answer








              New contributor




              Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
              Check out our Code of Conduct.






















                0












                0








                0







                Setting



                titlespacing*subsection 0em3.25ex plus 1ex minus .2ex1.5ex plus .2ex


                gives the correct result
                enter image description here






                share|improve this answer








                New contributor




                Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.










                Setting



                titlespacing*subsection 0em3.25ex plus 1ex minus .2ex1.5ex plus .2ex


                gives the correct result
                enter image description here







                share|improve this answer








                New contributor




                Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                share|improve this answer



                share|improve this answer






                New contributor




                Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.









                answered 8 hours ago









                Tupolev._Tupolev._

                1011




                1011




                New contributor




                Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.





                New contributor





                Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.






                Tupolev._ is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                Check out our Code of Conduct.




















                    Tupolev._ is a new contributor. Be nice, and check out our Code of Conduct.









                    draft saved

                    draft discarded


















                    Tupolev._ is a new contributor. Be nice, and check out our Code of Conduct.












                    Tupolev._ is a new contributor. Be nice, and check out our Code of Conduct.











                    Tupolev._ is a new contributor. Be nice, and check out our Code of Conduct.














                    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%2f481919%2flegal-style-indentation-with-text-on-the-same-line-as-the-subsection-title%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

                    Wikipedia:Contact us Navigation menu Navigation menuLeave a Reply Cancel reply Post navigationRecent PostsRecent CommentsArchivesCategoriesMeta

                    Farafra Inhaltsverzeichnis Geschichte | Badr-Museum Farafra | Nationalpark Weiße Wüste (as-Sahra al-baida) | Literatur | Weblinks | Navigationsmenü27° 3′ N, 27° 58′ OCommons: Farafra

                    Tórshavn Kliima | Partnerstääden | Luke uk diar | Nawigatsjuun62° 1′ N, 6° 46′ W62° 1′ 0″ N, 6° 46′ 0″ WWMOTórshavn