How to align top tables row?Two tables vertically alignTop-align two parboxes with tablesAlign top with multirow tables in Lyx 2.0How can I top align table cells of variable length?Vertically align text to the topVertically align first multiline row of tableTables in a rowTop align charactersVertical align tabular* to topTabular - 3 columns with top-align and bottom-align

Is this draw by repetition?

Do Iron Man suits sport waste management systems?

What Exploit Are These User Agents Trying to Use?

Was the Stack Exchange "Happy April Fools" page fitting with the '90's code?

What is a Samsaran Word™?

Obtaining database information and values in extended properties

How do conventional missiles fly?

Can compressed videos be decoded back to their uncompresed original format?

How seriously should I take size and weight limits of hand luggage?

Does the Idaho Potato Commission associate potato skins with healthy eating?

Is it possible to create a QR code using text?

Can someone clarify Hamming's notion of important problems in relation to modern academia?

Can a virus destroy the BIOS of a modern computer?

Why were 5.25" floppy drives cheaper than 8"?

In the UK, is it possible to get a referendum by a court decision?

Why are UK visa biometrics appointments suspended at USCIS Application Support Centers?

Why do I get negative height?

My ex-girlfriend uses my Apple ID to login to her iPad, do I have to give her my Apple ID password to reset it?

Could the museum Saturn V's be refitted for one more flight?

Where would I need my direct neural interface to be implanted?

Should I tell management that I intend to leave due to bad software development practices?

What is required to make GPS signals available indoors?

Blending or harmonizing

What's the meaning of "Sollensaussagen"?



How to align top tables row?


Two tables vertically alignTop-align two parboxes with tablesAlign top with multirow tables in Lyx 2.0How can I top align table cells of variable length?Vertically align text to the topVertically align first multiline row of tableTables in a rowTop align charactersVertical align tabular* to topTabular - 3 columns with top-align and bottom-align













2















I have this simple latex table, I want to align top rows(Day, Min Temp, Max Temp) top. How Can I do it ?



begintabular 
hline
Day & Min Temp & Max Temp &
beginminipagetextwidth
beginitemize
setlengthitemindent-.2in
setlengthitemsep-0.5em
item El 1
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
enditemize
endminipage
\ hline
Monday & 11C & 22C & A clear day with lots of sunshine.
However, the strong breeze will bring down the temperatures. \ hline
endtabular


Thank in advanced !!
enter image description here










share|improve this question
























  • please, next time provide complete small document beginning wit documentclass... and ending with enddocument containing your table. now people who like to help you should guessing about your document preamble ...

    – Zarko
    2 days ago















2















I have this simple latex table, I want to align top rows(Day, Min Temp, Max Temp) top. How Can I do it ?



begintabular 
hline
Day & Min Temp & Max Temp &
beginminipagetextwidth
beginitemize
setlengthitemindent-.2in
setlengthitemsep-0.5em
item El 1
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
enditemize
endminipage
\ hline
Monday & 11C & 22C & A clear day with lots of sunshine.
However, the strong breeze will bring down the temperatures. \ hline
endtabular


Thank in advanced !!
enter image description here










share|improve this question
























  • please, next time provide complete small document beginning wit documentclass... and ending with enddocument containing your table. now people who like to help you should guessing about your document preamble ...

    – Zarko
    2 days ago













2












2








2








I have this simple latex table, I want to align top rows(Day, Min Temp, Max Temp) top. How Can I do it ?



begintabular 
hline
Day & Min Temp & Max Temp &
beginminipagetextwidth
beginitemize
setlengthitemindent-.2in
setlengthitemsep-0.5em
item El 1
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
enditemize
endminipage
\ hline
Monday & 11C & 22C & A clear day with lots of sunshine.
However, the strong breeze will bring down the temperatures. \ hline
endtabular


Thank in advanced !!
enter image description here










share|improve this question
















I have this simple latex table, I want to align top rows(Day, Min Temp, Max Temp) top. How Can I do it ?



begintabular 
hline
Day & Min Temp & Max Temp &
beginminipagetextwidth
beginitemize
setlengthitemindent-.2in
setlengthitemsep-0.5em
item El 1
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
enditemize
endminipage
\ hline
Monday & 11C & 22C & A clear day with lots of sunshine.
However, the strong breeze will bring down the temperatures. \ hline
endtabular


Thank in advanced !!
enter image description here







tables vertical-alignment






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited 2 days ago









leandriis

11k1732




11k1732










asked 2 days ago









dmxdmx

14716




14716












  • please, next time provide complete small document beginning wit documentclass... and ending with enddocument containing your table. now people who like to help you should guessing about your document preamble ...

    – Zarko
    2 days ago

















  • please, next time provide complete small document beginning wit documentclass... and ending with enddocument containing your table. now people who like to help you should guessing about your document preamble ...

    – Zarko
    2 days ago
















please, next time provide complete small document beginning wit documentclass... and ending with enddocument containing your table. now people who like to help you should guessing about your document preamble ...

– Zarko
2 days ago





please, next time provide complete small document beginning wit documentclass... and ending with enddocument containing your table. now people who like to help you should guessing about your document preamble ...

– Zarko
2 days ago










2 Answers
2






active

oldest

votes


















3














Just change



beginminipagetextwidth


to



beginminipage[t]textwidth


i.e., add the [t] positioning specifier.




A full MWE (minimum working example), with some additional tweaks to your code to make the tabular material more appealing from a purely aesthetic point of view.



enter image description here



documentclassarticle
usepackagearray
setlengthextrarowheight2pt
begindocument
begintabular
hline
Day & Min Temp & Max Temp &
beginminipage[t]hsize
beginitemize
setlengthitemindent-.2in
setlengthitemsep-0.5em
item El 1
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2
item El 2strut
enditemize
endminipage \
hline
Monday & 11C & 22C & A clear day with lots of sunshine.
However, the strong breeze will bring down the temperatures. \
hline
endtabular

enddocument





share|improve this answer
































    2














    With the enumitem package you can define your own itemize environment for tables. In the second example I have used tabularx to make the table as wide as the textwidth:



    enter image description here



    documentclassarticle
    usepackageenumitem

    newlisttabitemizeitemize1
    setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

    usepackagetabularx

    begindocument

    begintabular
    hline
    Day & Min Temp & Max Temp &

    begintabitemize
    item El 1
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    endtabitemize

    \ hline
    Monday & 11C & 22C & A clear day with lots of sunshine.
    However, the strong breeze will bring down the temperatures. \ hline
    endtabular

    bigskip

    begintabularxtextwidth l
    hline
    Day & Min Temp & Max Temp &

    begintabitemize
    item El 1
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    endtabitemize

    \ hline
    Monday & 11C & 22C & A clear day with lots of sunshine.
    However, the strong breeze will bring down the temperatures. \ hline
    endtabularx


    enddocument


    For a more open look of the table, you could also use the booktabs package:



    documentclassarticle
    usepackageenumitem

    newlisttabitemizeitemize1
    setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

    usepackagetabularx
    usepackagebooktabs
    begindocument

    begintabularxtextwidth l l l X
    toprule
    Day & Min Temp & Max Temp &

    begintabitemize
    item El 1
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    endtabitemize

    \ midrule
    Monday & 11C & 22C & A clear day with lots of sunshine.
    However, the strong breeze will bring down the temperatures. \ bottomrule
    endtabularx


    enddocument


    enter image description here






    share|improve this answer























    • The baselines of "El 1" and of the other header items don't seem to matched up perfectly in either of the screenshots. Can you think of a way to fix this?

      – Mico
      2 days ago












    • @Mico: Thanks for pointing this out. I did not notice that. Aparently, changing from before=vspace-0.75baselineskip to before=vspace-0.7baselineskip should improve the alignment.

      – leandriis
      2 days ago











    • Another approach would consist of adding newenvironmentmylistbeginminipage[t]hsizebegintabitemizeendtabitemizeendminipage in the preamble and using beginmylist and endmylist in the body of the document. This would obviate the need to specify any kind of before=... adjustments.

      – Mico
      2 days ago












    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%2f482389%2fhow-to-align-top-tables-row%23new-answer', 'question_page');

    );

    Post as a guest















    Required, but never shown

























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes









    3














    Just change



    beginminipagetextwidth


    to



    beginminipage[t]textwidth


    i.e., add the [t] positioning specifier.




    A full MWE (minimum working example), with some additional tweaks to your code to make the tabular material more appealing from a purely aesthetic point of view.



    enter image description here



    documentclassarticle
    usepackagearray
    setlengthextrarowheight2pt
    begindocument
    begintabular
    hline
    Day & Min Temp & Max Temp &
    beginminipage[t]hsize
    beginitemize
    setlengthitemindent-.2in
    setlengthitemsep-0.5em
    item El 1
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2
    item El 2strut
    enditemize
    endminipage \
    hline
    Monday & 11C & 22C & A clear day with lots of sunshine.
    However, the strong breeze will bring down the temperatures. \
    hline
    endtabular

    enddocument





    share|improve this answer





























      3














      Just change



      beginminipagetextwidth


      to



      beginminipage[t]textwidth


      i.e., add the [t] positioning specifier.




      A full MWE (minimum working example), with some additional tweaks to your code to make the tabular material more appealing from a purely aesthetic point of view.



      enter image description here



      documentclassarticle
      usepackagearray
      setlengthextrarowheight2pt
      begindocument
      begintabular
      hline
      Day & Min Temp & Max Temp &
      beginminipage[t]hsize
      beginitemize
      setlengthitemindent-.2in
      setlengthitemsep-0.5em
      item El 1
      item El 2
      item El 2
      item El 2
      item El 2
      item El 2
      item El 2
      item El 2strut
      enditemize
      endminipage \
      hline
      Monday & 11C & 22C & A clear day with lots of sunshine.
      However, the strong breeze will bring down the temperatures. \
      hline
      endtabular

      enddocument





      share|improve this answer



























        3












        3








        3







        Just change



        beginminipagetextwidth


        to



        beginminipage[t]textwidth


        i.e., add the [t] positioning specifier.




        A full MWE (minimum working example), with some additional tweaks to your code to make the tabular material more appealing from a purely aesthetic point of view.



        enter image description here



        documentclassarticle
        usepackagearray
        setlengthextrarowheight2pt
        begindocument
        begintabular
        hline
        Day & Min Temp & Max Temp &
        beginminipage[t]hsize
        beginitemize
        setlengthitemindent-.2in
        setlengthitemsep-0.5em
        item El 1
        item El 2
        item El 2
        item El 2
        item El 2
        item El 2
        item El 2
        item El 2strut
        enditemize
        endminipage \
        hline
        Monday & 11C & 22C & A clear day with lots of sunshine.
        However, the strong breeze will bring down the temperatures. \
        hline
        endtabular

        enddocument





        share|improve this answer















        Just change



        beginminipagetextwidth


        to



        beginminipage[t]textwidth


        i.e., add the [t] positioning specifier.




        A full MWE (minimum working example), with some additional tweaks to your code to make the tabular material more appealing from a purely aesthetic point of view.



        enter image description here



        documentclassarticle
        usepackagearray
        setlengthextrarowheight2pt
        begindocument
        begintabular
        hline
        Day & Min Temp & Max Temp &
        beginminipage[t]hsize
        beginitemize
        setlengthitemindent-.2in
        setlengthitemsep-0.5em
        item El 1
        item El 2
        item El 2
        item El 2
        item El 2
        item El 2
        item El 2
        item El 2strut
        enditemize
        endminipage \
        hline
        Monday & 11C & 22C & A clear day with lots of sunshine.
        However, the strong breeze will bring down the temperatures. \
        hline
        endtabular

        enddocument






        share|improve this answer














        share|improve this answer



        share|improve this answer








        edited 2 days ago

























        answered 2 days ago









        MicoMico

        285k31388778




        285k31388778





















            2














            With the enumitem package you can define your own itemize environment for tables. In the second example I have used tabularx to make the table as wide as the textwidth:



            enter image description here



            documentclassarticle
            usepackageenumitem

            newlisttabitemizeitemize1
            setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

            usepackagetabularx

            begindocument

            begintabular
            hline
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ hline
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ hline
            endtabular

            bigskip

            begintabularxtextwidth l
            hline
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ hline
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ hline
            endtabularx


            enddocument


            For a more open look of the table, you could also use the booktabs package:



            documentclassarticle
            usepackageenumitem

            newlisttabitemizeitemize1
            setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

            usepackagetabularx
            usepackagebooktabs
            begindocument

            begintabularxtextwidth l l l X
            toprule
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ midrule
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ bottomrule
            endtabularx


            enddocument


            enter image description here






            share|improve this answer























            • The baselines of "El 1" and of the other header items don't seem to matched up perfectly in either of the screenshots. Can you think of a way to fix this?

              – Mico
              2 days ago












            • @Mico: Thanks for pointing this out. I did not notice that. Aparently, changing from before=vspace-0.75baselineskip to before=vspace-0.7baselineskip should improve the alignment.

              – leandriis
              2 days ago











            • Another approach would consist of adding newenvironmentmylistbeginminipage[t]hsizebegintabitemizeendtabitemizeendminipage in the preamble and using beginmylist and endmylist in the body of the document. This would obviate the need to specify any kind of before=... adjustments.

              – Mico
              2 days ago
















            2














            With the enumitem package you can define your own itemize environment for tables. In the second example I have used tabularx to make the table as wide as the textwidth:



            enter image description here



            documentclassarticle
            usepackageenumitem

            newlisttabitemizeitemize1
            setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

            usepackagetabularx

            begindocument

            begintabular
            hline
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ hline
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ hline
            endtabular

            bigskip

            begintabularxtextwidth l
            hline
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ hline
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ hline
            endtabularx


            enddocument


            For a more open look of the table, you could also use the booktabs package:



            documentclassarticle
            usepackageenumitem

            newlisttabitemizeitemize1
            setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

            usepackagetabularx
            usepackagebooktabs
            begindocument

            begintabularxtextwidth l l l X
            toprule
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ midrule
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ bottomrule
            endtabularx


            enddocument


            enter image description here






            share|improve this answer























            • The baselines of "El 1" and of the other header items don't seem to matched up perfectly in either of the screenshots. Can you think of a way to fix this?

              – Mico
              2 days ago












            • @Mico: Thanks for pointing this out. I did not notice that. Aparently, changing from before=vspace-0.75baselineskip to before=vspace-0.7baselineskip should improve the alignment.

              – leandriis
              2 days ago











            • Another approach would consist of adding newenvironmentmylistbeginminipage[t]hsizebegintabitemizeendtabitemizeendminipage in the preamble and using beginmylist and endmylist in the body of the document. This would obviate the need to specify any kind of before=... adjustments.

              – Mico
              2 days ago














            2












            2








            2







            With the enumitem package you can define your own itemize environment for tables. In the second example I have used tabularx to make the table as wide as the textwidth:



            enter image description here



            documentclassarticle
            usepackageenumitem

            newlisttabitemizeitemize1
            setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

            usepackagetabularx

            begindocument

            begintabular
            hline
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ hline
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ hline
            endtabular

            bigskip

            begintabularxtextwidth l
            hline
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ hline
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ hline
            endtabularx


            enddocument


            For a more open look of the table, you could also use the booktabs package:



            documentclassarticle
            usepackageenumitem

            newlisttabitemizeitemize1
            setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

            usepackagetabularx
            usepackagebooktabs
            begindocument

            begintabularxtextwidth l l l X
            toprule
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ midrule
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ bottomrule
            endtabularx


            enddocument


            enter image description here






            share|improve this answer













            With the enumitem package you can define your own itemize environment for tables. In the second example I have used tabularx to make the table as wide as the textwidth:



            enter image description here



            documentclassarticle
            usepackageenumitem

            newlisttabitemizeitemize1
            setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

            usepackagetabularx

            begindocument

            begintabular
            hline
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ hline
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ hline
            endtabular

            bigskip

            begintabularxtextwidth l
            hline
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ hline
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ hline
            endtabularx


            enddocument


            For a more open look of the table, you could also use the booktabs package:



            documentclassarticle
            usepackageenumitem

            newlisttabitemizeitemize1
            setlist[tabitemize]label=textbullet,nosep,after=strut,align=parleft,leftmargin=*,after=vspace-baselineskip,before=vspace-0.75baselineskip

            usepackagetabularx
            usepackagebooktabs
            begindocument

            begintabularxtextwidth l l l X
            toprule
            Day & Min Temp & Max Temp &

            begintabitemize
            item El 1
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            item El 2
            endtabitemize

            \ midrule
            Monday & 11C & 22C & A clear day with lots of sunshine.
            However, the strong breeze will bring down the temperatures. \ bottomrule
            endtabularx


            enddocument


            enter image description here







            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered 2 days ago









            leandriisleandriis

            11k1732




            11k1732












            • The baselines of "El 1" and of the other header items don't seem to matched up perfectly in either of the screenshots. Can you think of a way to fix this?

              – Mico
              2 days ago












            • @Mico: Thanks for pointing this out. I did not notice that. Aparently, changing from before=vspace-0.75baselineskip to before=vspace-0.7baselineskip should improve the alignment.

              – leandriis
              2 days ago











            • Another approach would consist of adding newenvironmentmylistbeginminipage[t]hsizebegintabitemizeendtabitemizeendminipage in the preamble and using beginmylist and endmylist in the body of the document. This would obviate the need to specify any kind of before=... adjustments.

              – Mico
              2 days ago


















            • The baselines of "El 1" and of the other header items don't seem to matched up perfectly in either of the screenshots. Can you think of a way to fix this?

              – Mico
              2 days ago












            • @Mico: Thanks for pointing this out. I did not notice that. Aparently, changing from before=vspace-0.75baselineskip to before=vspace-0.7baselineskip should improve the alignment.

              – leandriis
              2 days ago











            • Another approach would consist of adding newenvironmentmylistbeginminipage[t]hsizebegintabitemizeendtabitemizeendminipage in the preamble and using beginmylist and endmylist in the body of the document. This would obviate the need to specify any kind of before=... adjustments.

              – Mico
              2 days ago

















            The baselines of "El 1" and of the other header items don't seem to matched up perfectly in either of the screenshots. Can you think of a way to fix this?

            – Mico
            2 days ago






            The baselines of "El 1" and of the other header items don't seem to matched up perfectly in either of the screenshots. Can you think of a way to fix this?

            – Mico
            2 days ago














            @Mico: Thanks for pointing this out. I did not notice that. Aparently, changing from before=vspace-0.75baselineskip to before=vspace-0.7baselineskip should improve the alignment.

            – leandriis
            2 days ago





            @Mico: Thanks for pointing this out. I did not notice that. Aparently, changing from before=vspace-0.75baselineskip to before=vspace-0.7baselineskip should improve the alignment.

            – leandriis
            2 days ago













            Another approach would consist of adding newenvironmentmylistbeginminipage[t]hsizebegintabitemizeendtabitemizeendminipage in the preamble and using beginmylist and endmylist in the body of the document. This would obviate the need to specify any kind of before=... adjustments.

            – Mico
            2 days ago






            Another approach would consist of adding newenvironmentmylistbeginminipage[t]hsizebegintabitemizeendtabitemizeendminipage in the preamble and using beginmylist and endmylist in the body of the document. This would obviate the need to specify any kind of before=... adjustments.

            – Mico
            2 days ago


















            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%2f482389%2fhow-to-align-top-tables-row%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

            Sum ergo cogito? 1 nng

            419 nièngy_Soadمي 19bal1.5o_g

            Queiggey Chernihivv 9NnOo i Zw X QqKk LpB