How to justify escaped proportional text inside monospaced/fixed listing?Paragraph column in tabular working only in the first columnWhy are my Images not correctly centered?Exhaustive Information about text alignment in TabularDifference between fixed-width and proportional typewriter fonts in listings?tex4ht and listings: lines don't break when using escapeinsideHow to fix text alignment?Align leaders to the right end of the enclosing hbox?lstnewenvironment/lstset : using colors conditionally emph/emphstyle - SAS: (in=_x) versus if x in (1,2)Same font for listing and escaped latexHow to arrange two bodies of text /sections side by side? (Custom Resume Building)

Is it possible to do 50 km distance without any previous training?

What does it mean to describe someone as a butt steak?

If human space travel is limited by the G force vulnerability, is there a way to counter G forces?

How can I prevent hyper evolved versions of regular creatures from wiping out their cousins?

What is a clear way to write a bar that has an extra beat?

How is it possible to have an ability score that is less than 3?

"You are your self first supporter", a more proper way to say it

Cross compiling for RPi - error while loading shared libraries

Languages that we cannot (dis)prove to be Context-Free

How old can references or sources in a thesis be?

Replacing matching entries in one column of a file by another column from a different file

How does Bumblebee speak English as soon as he arrives on Earth in the Bumblebee movie?

Approximately how much travel time was saved by the opening of the Suez Canal in 1869?

Why doesn't Newton's third law mean a person bounces back to where they started when they hit the ground?

NMaximize is not converging to a solution

How does one intimidate enemies without having the capacity for violence?

Uncaught TypeError: 'set' on proxy: trap returned falsish for property Name

Does object always see its latest internal state irrespective of thread?

How to format long polynomial?

Can you really stack all of this on an Opportunity Attack?

Do infinite dimensional systems make sense?

Can a monk's single staff be considered dual wielded, as per the Dual Wielder feat?

Why is 150k or 200k jobs considered good when there's 300k+ births a month?

Can I make popcorn with any corn?



How to justify escaped proportional text inside monospaced/fixed listing?


Paragraph column in tabular working only in the first columnWhy are my Images not correctly centered?Exhaustive Information about text alignment in TabularDifference between fixed-width and proportional typewriter fonts in listings?tex4ht and listings: lines don't break when using escapeinsideHow to fix text alignment?Align leaders to the right end of the enclosing hbox?lstnewenvironment/lstset : using colors conditionally emph/emphstyle - SAS: (in=_x) versus if x in (1,2)Same font for listing and escaped latexHow to arrange two bodies of text /sections side by side? (Custom Resume Building)













3















I have a fixed column listing on which I have escapped to LaTeX to write a proportional bit of text. The following pic illustrates what I have:



enter image description here



On the green box, the proportional text have perfectly aligned to the monospaced text, probably by accident, but that's exactly what I want.



On the red box, because of the subscript there, the text did not align properly to the fixed columns. (In this case, I believe the spacing should be increased so that the semicolon will align to the space above it.)



How could I justify escaped text (possibly with math mode equations) so that it would align to the closest number of fixed-width columns inside the listing?



Here's the code to reproduce the above table:



documentclassarticle

usepackage[utf8]inputenc
usepackagegraphicx
usepackagelistings
usepackagecolor
usepackagemathtools
usepackagebooktabs

begindocument

pagestyleempty

lstnewenvironmentrgxbc
lstset
basicstyle=ttfamily,
columns=fixed,
escapeinside=@@




subsectionRelation to NFAs

begincenter
begintabular*3l
toprule
multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
midrule
$texttte_1texttte_2$ &
...
&
beginrgxbc
@textnormaltextitcode for $texttte_1$@;
@textnormaltextitcode for $texttte_2$@;
endrgxbc
\
hline
$texttte_1| texttte_2$ &
...
&
beginrgxbc
SPL .L1, .L2;
.L1: @textnormaltextitcode for $texttte_1$@;
JMP .L3;
.L2: @textnormaltextitcode for $texttte_2$@;
.L3:
endrgxbc
\
hline
$texttte?$ &
...
&
beginrgxbc
SPL .L1, .L2;
.L1: @textnormaltextitcode for $texttte$@;
.L2:
endrgxbc
\
hline
$texttte+$ &
...
&
beginrgxbc
.L1: @textnormaltextitcode for $texttte$@;
SPL .L1, .L2;
.L2:
endrgxbc
\
hline
$texttte*$ &
...
&
beginrgxbc
.L1: SPL .L2, .L3;
.L2: @textnormaltextitcode for $texttte$@;
JMP .L1;
.L3:
endrgxbc
\
bottomrule
endtabular
endcenter

enddocument









share|improve this question




























    3















    I have a fixed column listing on which I have escapped to LaTeX to write a proportional bit of text. The following pic illustrates what I have:



    enter image description here



    On the green box, the proportional text have perfectly aligned to the monospaced text, probably by accident, but that's exactly what I want.



    On the red box, because of the subscript there, the text did not align properly to the fixed columns. (In this case, I believe the spacing should be increased so that the semicolon will align to the space above it.)



    How could I justify escaped text (possibly with math mode equations) so that it would align to the closest number of fixed-width columns inside the listing?



    Here's the code to reproduce the above table:



    documentclassarticle

    usepackage[utf8]inputenc
    usepackagegraphicx
    usepackagelistings
    usepackagecolor
    usepackagemathtools
    usepackagebooktabs

    begindocument

    pagestyleempty

    lstnewenvironmentrgxbc
    lstset
    basicstyle=ttfamily,
    columns=fixed,
    escapeinside=@@




    subsectionRelation to NFAs

    begincenter
    begintabular*3l
    toprule
    multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
    midrule
    $texttte_1texttte_2$ &
    ...
    &
    beginrgxbc
    @textnormaltextitcode for $texttte_1$@;
    @textnormaltextitcode for $texttte_2$@;
    endrgxbc
    \
    hline
    $texttte_1| texttte_2$ &
    ...
    &
    beginrgxbc
    SPL .L1, .L2;
    .L1: @textnormaltextitcode for $texttte_1$@;
    JMP .L3;
    .L2: @textnormaltextitcode for $texttte_2$@;
    .L3:
    endrgxbc
    \
    hline
    $texttte?$ &
    ...
    &
    beginrgxbc
    SPL .L1, .L2;
    .L1: @textnormaltextitcode for $texttte$@;
    .L2:
    endrgxbc
    \
    hline
    $texttte+$ &
    ...
    &
    beginrgxbc
    .L1: @textnormaltextitcode for $texttte$@;
    SPL .L1, .L2;
    .L2:
    endrgxbc
    \
    hline
    $texttte*$ &
    ...
    &
    beginrgxbc
    .L1: SPL .L2, .L3;
    .L2: @textnormaltextitcode for $texttte$@;
    JMP .L1;
    .L3:
    endrgxbc
    \
    bottomrule
    endtabular
    endcenter

    enddocument









    share|improve this question


























      3












      3








      3








      I have a fixed column listing on which I have escapped to LaTeX to write a proportional bit of text. The following pic illustrates what I have:



      enter image description here



      On the green box, the proportional text have perfectly aligned to the monospaced text, probably by accident, but that's exactly what I want.



      On the red box, because of the subscript there, the text did not align properly to the fixed columns. (In this case, I believe the spacing should be increased so that the semicolon will align to the space above it.)



      How could I justify escaped text (possibly with math mode equations) so that it would align to the closest number of fixed-width columns inside the listing?



      Here's the code to reproduce the above table:



      documentclassarticle

      usepackage[utf8]inputenc
      usepackagegraphicx
      usepackagelistings
      usepackagecolor
      usepackagemathtools
      usepackagebooktabs

      begindocument

      pagestyleempty

      lstnewenvironmentrgxbc
      lstset
      basicstyle=ttfamily,
      columns=fixed,
      escapeinside=@@




      subsectionRelation to NFAs

      begincenter
      begintabular*3l
      toprule
      multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
      midrule
      $texttte_1texttte_2$ &
      ...
      &
      beginrgxbc
      @textnormaltextitcode for $texttte_1$@;
      @textnormaltextitcode for $texttte_2$@;
      endrgxbc
      \
      hline
      $texttte_1| texttte_2$ &
      ...
      &
      beginrgxbc
      SPL .L1, .L2;
      .L1: @textnormaltextitcode for $texttte_1$@;
      JMP .L3;
      .L2: @textnormaltextitcode for $texttte_2$@;
      .L3:
      endrgxbc
      \
      hline
      $texttte?$ &
      ...
      &
      beginrgxbc
      SPL .L1, .L2;
      .L1: @textnormaltextitcode for $texttte$@;
      .L2:
      endrgxbc
      \
      hline
      $texttte+$ &
      ...
      &
      beginrgxbc
      .L1: @textnormaltextitcode for $texttte$@;
      SPL .L1, .L2;
      .L2:
      endrgxbc
      \
      hline
      $texttte*$ &
      ...
      &
      beginrgxbc
      .L1: SPL .L2, .L3;
      .L2: @textnormaltextitcode for $texttte$@;
      JMP .L1;
      .L3:
      endrgxbc
      \
      bottomrule
      endtabular
      endcenter

      enddocument









      share|improve this question
















      I have a fixed column listing on which I have escapped to LaTeX to write a proportional bit of text. The following pic illustrates what I have:



      enter image description here



      On the green box, the proportional text have perfectly aligned to the monospaced text, probably by accident, but that's exactly what I want.



      On the red box, because of the subscript there, the text did not align properly to the fixed columns. (In this case, I believe the spacing should be increased so that the semicolon will align to the space above it.)



      How could I justify escaped text (possibly with math mode equations) so that it would align to the closest number of fixed-width columns inside the listing?



      Here's the code to reproduce the above table:



      documentclassarticle

      usepackage[utf8]inputenc
      usepackagegraphicx
      usepackagelistings
      usepackagecolor
      usepackagemathtools
      usepackagebooktabs

      begindocument

      pagestyleempty

      lstnewenvironmentrgxbc
      lstset
      basicstyle=ttfamily,
      columns=fixed,
      escapeinside=@@




      subsectionRelation to NFAs

      begincenter
      begintabular*3l
      toprule
      multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
      midrule
      $texttte_1texttte_2$ &
      ...
      &
      beginrgxbc
      @textnormaltextitcode for $texttte_1$@;
      @textnormaltextitcode for $texttte_2$@;
      endrgxbc
      \
      hline
      $texttte_1| texttte_2$ &
      ...
      &
      beginrgxbc
      SPL .L1, .L2;
      .L1: @textnormaltextitcode for $texttte_1$@;
      JMP .L3;
      .L2: @textnormaltextitcode for $texttte_2$@;
      .L3:
      endrgxbc
      \
      hline
      $texttte?$ &
      ...
      &
      beginrgxbc
      SPL .L1, .L2;
      .L1: @textnormaltextitcode for $texttte$@;
      .L2:
      endrgxbc
      \
      hline
      $texttte+$ &
      ...
      &
      beginrgxbc
      .L1: @textnormaltextitcode for $texttte$@;
      SPL .L1, .L2;
      .L2:
      endrgxbc
      \
      hline
      $texttte*$ &
      ...
      &
      beginrgxbc
      .L1: SPL .L2, .L3;
      .L2: @textnormaltextitcode for $texttte$@;
      JMP .L1;
      .L3:
      endrgxbc
      \
      bottomrule
      endtabular
      endcenter

      enddocument






      horizontal-alignment listings boxes






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Apr 15 '16 at 10:24







      paulotorrens

















      asked Apr 14 '16 at 17:40









      paulotorrenspaulotorrens

      1184




      1184




















          1 Answer
          1






          active

          oldest

          votes


















          1














          You can force all the escaped code into a box a size a multiple of the listings fixed column width



          enter image description here



          documentclassarticle

          usepackage[utf8]inputenc
          usepackagegraphicx
          usepackagelistings
          usepackagecolor
          usepackagemathtools
          usepackagebooktabs

          makeatletter
          defzz#1%
          setbox0hbox#1%
          count0=wd0
          dividecount0 by dimexprlst@widthfixedrelax
          dimen0=count0 dimexprlst@widthfixedrelax
          ifdimdimen0<wd0 advancedimen0 lst@widthfixedfi
          makebox[dimen0][l]usebox0%

          makeatletter


          begindocument

          pagestyleempty

          lstnewenvironmentrgxbc
          lstset
          basicstyle=ttfamily,
          columns=fixed,
          escapeinside=@@






          subsectionRelation to NFAs

          begincenter
          begintabular*3l
          toprule
          multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
          midrule
          $texttte_1texttte_2$ &
          ...
          &
          beginrgxbc
          @zztextnormaltextitcode for $texttte_1$@;
          @zztextnormaltextitcode for $texttte_2$@;
          endrgxbc
          \
          hline
          $texttte_1| texttte_2$ &
          ...
          &
          beginrgxbc
          SPL .L1, .L2;
          .L1: @zztextnormaltextitcode for $texttte_1$@;
          JMP .L3;
          .L2: @zztextnormaltextitcode for $texttte_2$@;
          .L3:
          endrgxbc
          \
          hline
          $texttte?$ &
          ...
          &
          beginrgxbc
          SPL .L1, .L2;
          .L1: @zztextnormaltextitcode for $texttte$@;
          .L2:
          endrgxbc
          \
          hline
          $texttte+$ &
          ...
          &
          beginrgxbc
          .L1: @zztextnormaltextitcode for $texttte$@;
          SPL .L1, .L2;
          .L2:
          endrgxbc
          \
          hline
          $texttte*$ &
          ...
          &
          beginrgxbc
          .L1: SPL .L2, .L3;
          .L2: @zztextnormaltextitcode for $texttte$@;
          JMP .L1;
          .L3:
          endrgxbc
          \
          bottomrule
          endtabular
          endcenter

          enddocument




          share























            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%2f304317%2fhow-to-justify-escaped-proportional-text-inside-monospaced-fixed-listing%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









            1














            You can force all the escaped code into a box a size a multiple of the listings fixed column width



            enter image description here



            documentclassarticle

            usepackage[utf8]inputenc
            usepackagegraphicx
            usepackagelistings
            usepackagecolor
            usepackagemathtools
            usepackagebooktabs

            makeatletter
            defzz#1%
            setbox0hbox#1%
            count0=wd0
            dividecount0 by dimexprlst@widthfixedrelax
            dimen0=count0 dimexprlst@widthfixedrelax
            ifdimdimen0<wd0 advancedimen0 lst@widthfixedfi
            makebox[dimen0][l]usebox0%

            makeatletter


            begindocument

            pagestyleempty

            lstnewenvironmentrgxbc
            lstset
            basicstyle=ttfamily,
            columns=fixed,
            escapeinside=@@






            subsectionRelation to NFAs

            begincenter
            begintabular*3l
            toprule
            multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
            midrule
            $texttte_1texttte_2$ &
            ...
            &
            beginrgxbc
            @zztextnormaltextitcode for $texttte_1$@;
            @zztextnormaltextitcode for $texttte_2$@;
            endrgxbc
            \
            hline
            $texttte_1| texttte_2$ &
            ...
            &
            beginrgxbc
            SPL .L1, .L2;
            .L1: @zztextnormaltextitcode for $texttte_1$@;
            JMP .L3;
            .L2: @zztextnormaltextitcode for $texttte_2$@;
            .L3:
            endrgxbc
            \
            hline
            $texttte?$ &
            ...
            &
            beginrgxbc
            SPL .L1, .L2;
            .L1: @zztextnormaltextitcode for $texttte$@;
            .L2:
            endrgxbc
            \
            hline
            $texttte+$ &
            ...
            &
            beginrgxbc
            .L1: @zztextnormaltextitcode for $texttte$@;
            SPL .L1, .L2;
            .L2:
            endrgxbc
            \
            hline
            $texttte*$ &
            ...
            &
            beginrgxbc
            .L1: SPL .L2, .L3;
            .L2: @zztextnormaltextitcode for $texttte$@;
            JMP .L1;
            .L3:
            endrgxbc
            \
            bottomrule
            endtabular
            endcenter

            enddocument




            share



























              1














              You can force all the escaped code into a box a size a multiple of the listings fixed column width



              enter image description here



              documentclassarticle

              usepackage[utf8]inputenc
              usepackagegraphicx
              usepackagelistings
              usepackagecolor
              usepackagemathtools
              usepackagebooktabs

              makeatletter
              defzz#1%
              setbox0hbox#1%
              count0=wd0
              dividecount0 by dimexprlst@widthfixedrelax
              dimen0=count0 dimexprlst@widthfixedrelax
              ifdimdimen0<wd0 advancedimen0 lst@widthfixedfi
              makebox[dimen0][l]usebox0%

              makeatletter


              begindocument

              pagestyleempty

              lstnewenvironmentrgxbc
              lstset
              basicstyle=ttfamily,
              columns=fixed,
              escapeinside=@@






              subsectionRelation to NFAs

              begincenter
              begintabular*3l
              toprule
              multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
              midrule
              $texttte_1texttte_2$ &
              ...
              &
              beginrgxbc
              @zztextnormaltextitcode for $texttte_1$@;
              @zztextnormaltextitcode for $texttte_2$@;
              endrgxbc
              \
              hline
              $texttte_1| texttte_2$ &
              ...
              &
              beginrgxbc
              SPL .L1, .L2;
              .L1: @zztextnormaltextitcode for $texttte_1$@;
              JMP .L3;
              .L2: @zztextnormaltextitcode for $texttte_2$@;
              .L3:
              endrgxbc
              \
              hline
              $texttte?$ &
              ...
              &
              beginrgxbc
              SPL .L1, .L2;
              .L1: @zztextnormaltextitcode for $texttte$@;
              .L2:
              endrgxbc
              \
              hline
              $texttte+$ &
              ...
              &
              beginrgxbc
              .L1: @zztextnormaltextitcode for $texttte$@;
              SPL .L1, .L2;
              .L2:
              endrgxbc
              \
              hline
              $texttte*$ &
              ...
              &
              beginrgxbc
              .L1: SPL .L2, .L3;
              .L2: @zztextnormaltextitcode for $texttte$@;
              JMP .L1;
              .L3:
              endrgxbc
              \
              bottomrule
              endtabular
              endcenter

              enddocument




              share

























                1












                1








                1







                You can force all the escaped code into a box a size a multiple of the listings fixed column width



                enter image description here



                documentclassarticle

                usepackage[utf8]inputenc
                usepackagegraphicx
                usepackagelistings
                usepackagecolor
                usepackagemathtools
                usepackagebooktabs

                makeatletter
                defzz#1%
                setbox0hbox#1%
                count0=wd0
                dividecount0 by dimexprlst@widthfixedrelax
                dimen0=count0 dimexprlst@widthfixedrelax
                ifdimdimen0<wd0 advancedimen0 lst@widthfixedfi
                makebox[dimen0][l]usebox0%

                makeatletter


                begindocument

                pagestyleempty

                lstnewenvironmentrgxbc
                lstset
                basicstyle=ttfamily,
                columns=fixed,
                escapeinside=@@






                subsectionRelation to NFAs

                begincenter
                begintabular*3l
                toprule
                multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
                midrule
                $texttte_1texttte_2$ &
                ...
                &
                beginrgxbc
                @zztextnormaltextitcode for $texttte_1$@;
                @zztextnormaltextitcode for $texttte_2$@;
                endrgxbc
                \
                hline
                $texttte_1| texttte_2$ &
                ...
                &
                beginrgxbc
                SPL .L1, .L2;
                .L1: @zztextnormaltextitcode for $texttte_1$@;
                JMP .L3;
                .L2: @zztextnormaltextitcode for $texttte_2$@;
                .L3:
                endrgxbc
                \
                hline
                $texttte?$ &
                ...
                &
                beginrgxbc
                SPL .L1, .L2;
                .L1: @zztextnormaltextitcode for $texttte$@;
                .L2:
                endrgxbc
                \
                hline
                $texttte+$ &
                ...
                &
                beginrgxbc
                .L1: @zztextnormaltextitcode for $texttte$@;
                SPL .L1, .L2;
                .L2:
                endrgxbc
                \
                hline
                $texttte*$ &
                ...
                &
                beginrgxbc
                .L1: SPL .L2, .L3;
                .L2: @zztextnormaltextitcode for $texttte$@;
                JMP .L1;
                .L3:
                endrgxbc
                \
                bottomrule
                endtabular
                endcenter

                enddocument




                share













                You can force all the escaped code into a box a size a multiple of the listings fixed column width



                enter image description here



                documentclassarticle

                usepackage[utf8]inputenc
                usepackagegraphicx
                usepackagelistings
                usepackagecolor
                usepackagemathtools
                usepackagebooktabs

                makeatletter
                defzz#1%
                setbox0hbox#1%
                count0=wd0
                dividecount0 by dimexprlst@widthfixedrelax
                dimen0=count0 dimexprlst@widthfixedrelax
                ifdimdimen0<wd0 advancedimen0 lst@widthfixedfi
                makebox[dimen0][l]usebox0%

                makeatletter


                begindocument

                pagestyleempty

                lstnewenvironmentrgxbc
                lstset
                basicstyle=ttfamily,
                columns=fixed,
                escapeinside=@@






                subsectionRelation to NFAs

                begincenter
                begintabular*3l
                toprule
                multicolumn1cemphExpression & multicolumn1cemphNFA & multicolumn1cemphBytecode \
                midrule
                $texttte_1texttte_2$ &
                ...
                &
                beginrgxbc
                @zztextnormaltextitcode for $texttte_1$@;
                @zztextnormaltextitcode for $texttte_2$@;
                endrgxbc
                \
                hline
                $texttte_1| texttte_2$ &
                ...
                &
                beginrgxbc
                SPL .L1, .L2;
                .L1: @zztextnormaltextitcode for $texttte_1$@;
                JMP .L3;
                .L2: @zztextnormaltextitcode for $texttte_2$@;
                .L3:
                endrgxbc
                \
                hline
                $texttte?$ &
                ...
                &
                beginrgxbc
                SPL .L1, .L2;
                .L1: @zztextnormaltextitcode for $texttte$@;
                .L2:
                endrgxbc
                \
                hline
                $texttte+$ &
                ...
                &
                beginrgxbc
                .L1: @zztextnormaltextitcode for $texttte$@;
                SPL .L1, .L2;
                .L2:
                endrgxbc
                \
                hline
                $texttte*$ &
                ...
                &
                beginrgxbc
                .L1: SPL .L2, .L3;
                .L2: @zztextnormaltextitcode for $texttte$@;
                JMP .L1;
                .L3:
                endrgxbc
                \
                bottomrule
                endtabular
                endcenter

                enddocument





                share











                share


                share










                answered 5 mins ago









                David CarlisleDavid Carlisle

                497k4111441891




                497k4111441891



























                    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%2f304317%2fhow-to-justify-escaped-proportional-text-inside-monospaced-fixed-listing%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

                    Isabella Eugénie Boyer Biographie | Références | Menu de navigationmodifiermodifier le codeComparator to Compute the Relative Value of a U.S. Dollar Amount – 1774 to Present.

                    Join wedge with single bond in chemfigHow to make only one part of double bond bold with chemfig?Crossing bonds in chemfigjoining atoms in chemfig. Two adjacent molculesHow do I selectively change bond length in chemfig?Ugly bond joints in chemfigchemfig: reaction above arrowUsing the mhchem and chemfig packages in conjunctionBonding to specific element letter using chemfigResonance hybrids in chemfigScale chemfig molecule in beamer with tikzWhy does this chemfig bond with a hook start in the middle of the atom?

                    Are small insurances worth itIs insurance worth it if you can afford to replace the item? If not, when is it?Is accident insurance worth it for my kids who play sportsIs insuring property for more than it is worth allowed?At what point does it become worth it to file an insurance claim?Are wage loss insurance programs worth the cost compared to having an emergency fund?When is an event worth insuring against?Is insurance worth it if you can afford to replace the item? If not, when is it?FHA loan just commenced : Any way to get any of the up-front mortgage insurance back?Which types of insurances do I need to buy?Should I carry less renter's insurance if I can self-insure?Mortgage Adviser Signed Me Up For Multiple Home and Life Insurances (UK)Why many travel insurances don't cover country of nationality?