Tables to present equations and their elements

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP












2














I'm trying to present a equation in this way



Example of Table



I don't know if it's the best way to present this information, but i got that example from a reference guide.










share|improve this question


























    2














    I'm trying to present a equation in this way



    Example of Table



    I don't know if it's the best way to present this information, but i got that example from a reference guide.










    share|improve this question
























      2












      2








      2







      I'm trying to present a equation in this way



      Example of Table



      I don't know if it's the best way to present this information, but i got that example from a reference guide.










      share|improve this question













      I'm trying to present a equation in this way



      Example of Table



      I don't know if it's the best way to present this information, but i got that example from a reference guide.







      tables






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Dec 13 at 2:07









      kraDracsO

      357




      357




















          3 Answers
          3






          active

          oldest

          votes


















          3














          i suspect that you looking for the following:



          enter image description here



          documentclass[10pt,letterpaper]report
          usepackageamsmath,amssymb
          usepackagearray,multirow

          usepackagelipsum
          begindocument
          lipsum[66]
          [setlengthextrarowheight1pt
          begintabularr c >$r<$: l
          multirow[t]3*$
          Q_r=dfracWgammatimes t
          $ & where & W & Weight \
          & & gamma & Specific weight\
          & & t & Average time
          endtabular
          ]
          lipsum[66]
          enddocument





          share|improve this answer




















          • Yes, this is what i was looking for. Can you elaborate on what does [setlengthextrarowheight1pt?
            – kraDracsO
            Dec 13 at 2:42






          • 3




            [ and ] are delimiters for math environment (equivalent for beginequation* and endequation. with setlengthextrarowheight1pt is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text in tabular.
            – Zarko
            Dec 13 at 3:03



















          3














          Here's a solution that uses a single array environment.



          enter image description here



          documentclassarticle
          usepackageamsmath,array
          newcolumntypeL>$l<$
          begindocument
          [
          Q_r=fracWgammatimes t qquadtextwhereqquad
          beginarray[t]@ r<colon L @
          W & Weight \
          gamma & Specific weight\
          t & Average time
          endarray
          ]
          enddocument





          share|improve this answer




























            0














            I read this post and got this



            documentclass[10pt,letterpaper]report
            usepackage[utf8]inputenc
            usepackageamsmath,amsfonts,amssymb
            begindocument
            begintabularrcl
            $Q_r=dfracWgamma times t$& where & begintabularrl
            &\
            &\
            $W$:&Weight\
            $gamma$:&Specific weight\
            $t$:&Average time
            endtabular
            endtabular
            enddocument


            But this creates a space above the table. I could add a vspace-0.5cm before the table.






            share|improve this answer




















            • The reason for the whitespace above the tabular environment is that the tabular environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nested tabular environments, the best way to get rid of the unwanted whitespace is to replace both instances of begintabular with begintabular[t], i.e., to require top-alignment, and to get rid of the two blank rows. Do note that you don't actually need the "outer" tabular environment. Just encase formula and its legend in a display-math environment.
              – Mico
              Dec 13 at 7:44










            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%2f464618%2ftables-to-present-equations-and-their-elements%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









            3














            i suspect that you looking for the following:



            enter image description here



            documentclass[10pt,letterpaper]report
            usepackageamsmath,amssymb
            usepackagearray,multirow

            usepackagelipsum
            begindocument
            lipsum[66]
            [setlengthextrarowheight1pt
            begintabularr c >$r<$: l
            multirow[t]3*$
            Q_r=dfracWgammatimes t
            $ & where & W & Weight \
            & & gamma & Specific weight\
            & & t & Average time
            endtabular
            ]
            lipsum[66]
            enddocument





            share|improve this answer




















            • Yes, this is what i was looking for. Can you elaborate on what does [setlengthextrarowheight1pt?
              – kraDracsO
              Dec 13 at 2:42






            • 3




              [ and ] are delimiters for math environment (equivalent for beginequation* and endequation. with setlengthextrarowheight1pt is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text in tabular.
              – Zarko
              Dec 13 at 3:03
















            3














            i suspect that you looking for the following:



            enter image description here



            documentclass[10pt,letterpaper]report
            usepackageamsmath,amssymb
            usepackagearray,multirow

            usepackagelipsum
            begindocument
            lipsum[66]
            [setlengthextrarowheight1pt
            begintabularr c >$r<$: l
            multirow[t]3*$
            Q_r=dfracWgammatimes t
            $ & where & W & Weight \
            & & gamma & Specific weight\
            & & t & Average time
            endtabular
            ]
            lipsum[66]
            enddocument





            share|improve this answer




















            • Yes, this is what i was looking for. Can you elaborate on what does [setlengthextrarowheight1pt?
              – kraDracsO
              Dec 13 at 2:42






            • 3




              [ and ] are delimiters for math environment (equivalent for beginequation* and endequation. with setlengthextrarowheight1pt is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text in tabular.
              – Zarko
              Dec 13 at 3:03














            3












            3








            3






            i suspect that you looking for the following:



            enter image description here



            documentclass[10pt,letterpaper]report
            usepackageamsmath,amssymb
            usepackagearray,multirow

            usepackagelipsum
            begindocument
            lipsum[66]
            [setlengthextrarowheight1pt
            begintabularr c >$r<$: l
            multirow[t]3*$
            Q_r=dfracWgammatimes t
            $ & where & W & Weight \
            & & gamma & Specific weight\
            & & t & Average time
            endtabular
            ]
            lipsum[66]
            enddocument





            share|improve this answer












            i suspect that you looking for the following:



            enter image description here



            documentclass[10pt,letterpaper]report
            usepackageamsmath,amssymb
            usepackagearray,multirow

            usepackagelipsum
            begindocument
            lipsum[66]
            [setlengthextrarowheight1pt
            begintabularr c >$r<$: l
            multirow[t]3*$
            Q_r=dfracWgammatimes t
            $ & where & W & Weight \
            & & gamma & Specific weight\
            & & t & Average time
            endtabular
            ]
            lipsum[66]
            enddocument






            share|improve this answer












            share|improve this answer



            share|improve this answer










            answered Dec 13 at 2:32









            Zarko

            120k865155




            120k865155











            • Yes, this is what i was looking for. Can you elaborate on what does [setlengthextrarowheight1pt?
              – kraDracsO
              Dec 13 at 2:42






            • 3




              [ and ] are delimiters for math environment (equivalent for beginequation* and endequation. with setlengthextrarowheight1pt is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text in tabular.
              – Zarko
              Dec 13 at 3:03

















            • Yes, this is what i was looking for. Can you elaborate on what does [setlengthextrarowheight1pt?
              – kraDracsO
              Dec 13 at 2:42






            • 3




              [ and ] are delimiters for math environment (equivalent for beginequation* and endequation. with setlengthextrarowheight1pt is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text in tabular.
              – Zarko
              Dec 13 at 3:03
















            Yes, this is what i was looking for. Can you elaborate on what does [setlengthextrarowheight1pt?
            – kraDracsO
            Dec 13 at 2:42




            Yes, this is what i was looking for. Can you elaborate on what does [setlengthextrarowheight1pt?
            – kraDracsO
            Dec 13 at 2:42




            3




            3




            [ and ] are delimiters for math environment (equivalent for beginequation* and endequation. with setlengthextrarowheight1pt is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text in tabular.
            – Zarko
            Dec 13 at 3:03





            [ and ] are delimiters for math environment (equivalent for beginequation* and endequation. with setlengthextrarowheight1pt is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text in tabular.
            – Zarko
            Dec 13 at 3:03












            3














            Here's a solution that uses a single array environment.



            enter image description here



            documentclassarticle
            usepackageamsmath,array
            newcolumntypeL>$l<$
            begindocument
            [
            Q_r=fracWgammatimes t qquadtextwhereqquad
            beginarray[t]@ r<colon L @
            W & Weight \
            gamma & Specific weight\
            t & Average time
            endarray
            ]
            enddocument





            share|improve this answer

























              3














              Here's a solution that uses a single array environment.



              enter image description here



              documentclassarticle
              usepackageamsmath,array
              newcolumntypeL>$l<$
              begindocument
              [
              Q_r=fracWgammatimes t qquadtextwhereqquad
              beginarray[t]@ r<colon L @
              W & Weight \
              gamma & Specific weight\
              t & Average time
              endarray
              ]
              enddocument





              share|improve this answer























                3












                3








                3






                Here's a solution that uses a single array environment.



                enter image description here



                documentclassarticle
                usepackageamsmath,array
                newcolumntypeL>$l<$
                begindocument
                [
                Q_r=fracWgammatimes t qquadtextwhereqquad
                beginarray[t]@ r<colon L @
                W & Weight \
                gamma & Specific weight\
                t & Average time
                endarray
                ]
                enddocument





                share|improve this answer












                Here's a solution that uses a single array environment.



                enter image description here



                documentclassarticle
                usepackageamsmath,array
                newcolumntypeL>$l<$
                begindocument
                [
                Q_r=fracWgammatimes t qquadtextwhereqquad
                beginarray[t]@ r<colon L @
                W & Weight \
                gamma & Specific weight\
                t & Average time
                endarray
                ]
                enddocument






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Dec 13 at 6:11









                Mico

                273k30369756




                273k30369756





















                    0














                    I read this post and got this



                    documentclass[10pt,letterpaper]report
                    usepackage[utf8]inputenc
                    usepackageamsmath,amsfonts,amssymb
                    begindocument
                    begintabularrcl
                    $Q_r=dfracWgamma times t$& where & begintabularrl
                    &\
                    &\
                    $W$:&Weight\
                    $gamma$:&Specific weight\
                    $t$:&Average time
                    endtabular
                    endtabular
                    enddocument


                    But this creates a space above the table. I could add a vspace-0.5cm before the table.






                    share|improve this answer




















                    • The reason for the whitespace above the tabular environment is that the tabular environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nested tabular environments, the best way to get rid of the unwanted whitespace is to replace both instances of begintabular with begintabular[t], i.e., to require top-alignment, and to get rid of the two blank rows. Do note that you don't actually need the "outer" tabular environment. Just encase formula and its legend in a display-math environment.
                      – Mico
                      Dec 13 at 7:44















                    0














                    I read this post and got this



                    documentclass[10pt,letterpaper]report
                    usepackage[utf8]inputenc
                    usepackageamsmath,amsfonts,amssymb
                    begindocument
                    begintabularrcl
                    $Q_r=dfracWgamma times t$& where & begintabularrl
                    &\
                    &\
                    $W$:&Weight\
                    $gamma$:&Specific weight\
                    $t$:&Average time
                    endtabular
                    endtabular
                    enddocument


                    But this creates a space above the table. I could add a vspace-0.5cm before the table.






                    share|improve this answer




















                    • The reason for the whitespace above the tabular environment is that the tabular environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nested tabular environments, the best way to get rid of the unwanted whitespace is to replace both instances of begintabular with begintabular[t], i.e., to require top-alignment, and to get rid of the two blank rows. Do note that you don't actually need the "outer" tabular environment. Just encase formula and its legend in a display-math environment.
                      – Mico
                      Dec 13 at 7:44













                    0












                    0








                    0






                    I read this post and got this



                    documentclass[10pt,letterpaper]report
                    usepackage[utf8]inputenc
                    usepackageamsmath,amsfonts,amssymb
                    begindocument
                    begintabularrcl
                    $Q_r=dfracWgamma times t$& where & begintabularrl
                    &\
                    &\
                    $W$:&Weight\
                    $gamma$:&Specific weight\
                    $t$:&Average time
                    endtabular
                    endtabular
                    enddocument


                    But this creates a space above the table. I could add a vspace-0.5cm before the table.






                    share|improve this answer












                    I read this post and got this



                    documentclass[10pt,letterpaper]report
                    usepackage[utf8]inputenc
                    usepackageamsmath,amsfonts,amssymb
                    begindocument
                    begintabularrcl
                    $Q_r=dfracWgamma times t$& where & begintabularrl
                    &\
                    &\
                    $W$:&Weight\
                    $gamma$:&Specific weight\
                    $t$:&Average time
                    endtabular
                    endtabular
                    enddocument


                    But this creates a space above the table. I could add a vspace-0.5cm before the table.







                    share|improve this answer












                    share|improve this answer



                    share|improve this answer










                    answered Dec 13 at 2:07









                    kraDracsO

                    357




                    357











                    • The reason for the whitespace above the tabular environment is that the tabular environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nested tabular environments, the best way to get rid of the unwanted whitespace is to replace both instances of begintabular with begintabular[t], i.e., to require top-alignment, and to get rid of the two blank rows. Do note that you don't actually need the "outer" tabular environment. Just encase formula and its legend in a display-math environment.
                      – Mico
                      Dec 13 at 7:44
















                    • The reason for the whitespace above the tabular environment is that the tabular environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nested tabular environments, the best way to get rid of the unwanted whitespace is to replace both instances of begintabular with begintabular[t], i.e., to require top-alignment, and to get rid of the two blank rows. Do note that you don't actually need the "outer" tabular environment. Just encase formula and its legend in a display-math environment.
                      – Mico
                      Dec 13 at 7:44















                    The reason for the whitespace above the tabular environment is that the tabular environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nested tabular environments, the best way to get rid of the unwanted whitespace is to replace both instances of begintabular with begintabular[t], i.e., to require top-alignment, and to get rid of the two blank rows. Do note that you don't actually need the "outer" tabular environment. Just encase formula and its legend in a display-math environment.
                    – Mico
                    Dec 13 at 7:44




                    The reason for the whitespace above the tabular environment is that the tabular environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nested tabular environments, the best way to get rid of the unwanted whitespace is to replace both instances of begintabular with begintabular[t], i.e., to require top-alignment, and to get rid of the two blank rows. Do note that you don't actually need the "outer" tabular environment. Just encase formula and its legend in a display-math environment.
                    – Mico
                    Dec 13 at 7:44

















                    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.





                    Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                    Please pay close attention to the following guidance:


                    • 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%2f464618%2ftables-to-present-equations-and-their-elements%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

                    How to check contact read email or not when send email to Individual?

                    Bahrain

                    Postfix configuration issue with fips on centos 7; mailgun relay