Tables to present equations and their elements
Clash Royale CLAN TAG#URR8PPP
I'm trying to present a equation in this way
I don't know if it's the best way to present this information, but i got that example from a reference guide.
tables
add a comment |
I'm trying to present a equation in this way
I don't know if it's the best way to present this information, but i got that example from a reference guide.
tables
add a comment |
I'm trying to present a equation in this way
I don't know if it's the best way to present this information, but i got that example from a reference guide.
tables
I'm trying to present a equation in this way
I don't know if it's the best way to present this information, but i got that example from a reference guide.
tables
tables
asked Dec 13 at 2:07
kraDracsO
357
357
add a comment |
add a comment |
3 Answers
3
active
oldest
votes
i suspect that you looking for the following:
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
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 forbeginequation*
andendequation
. withsetlengthextrarowheight1pt
is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text intabular
.
– Zarko
Dec 13 at 3:03
add a comment |
Here's a solution that uses a single array
environment.
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
add a comment |
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.
The reason for the whitespace above thetabular
environment is that thetabular
environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nestedtabular
environments, the best way to get rid of the unwanted whitespace is to replace both instances ofbegintabular
withbegintabular[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
add a comment |
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
i suspect that you looking for the following:
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
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 forbeginequation*
andendequation
. withsetlengthextrarowheight1pt
is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text intabular
.
– Zarko
Dec 13 at 3:03
add a comment |
i suspect that you looking for the following:
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
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 forbeginequation*
andendequation
. withsetlengthextrarowheight1pt
is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text intabular
.
– Zarko
Dec 13 at 3:03
add a comment |
i suspect that you looking for the following:
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
i suspect that you looking for the following:
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
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 forbeginequation*
andendequation
. withsetlengthextrarowheight1pt
is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text intabular
.
– Zarko
Dec 13 at 3:03
add a comment |
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 forbeginequation*
andendequation
. withsetlengthextrarowheight1pt
is added vertical space of 1pt above cells' contents. you can omit this space, if you like to have more dense text intabular
.
– 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
add a comment |
Here's a solution that uses a single array
environment.
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
add a comment |
Here's a solution that uses a single array
environment.
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
add a comment |
Here's a solution that uses a single array
environment.
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
Here's a solution that uses a single array
environment.
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
answered Dec 13 at 6:11
Mico
273k30369756
273k30369756
add a comment |
add a comment |
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.
The reason for the whitespace above thetabular
environment is that thetabular
environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nestedtabular
environments, the best way to get rid of the unwanted whitespace is to replace both instances ofbegintabular
withbegintabular[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
add a comment |
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.
The reason for the whitespace above thetabular
environment is that thetabular
environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nestedtabular
environments, the best way to get rid of the unwanted whitespace is to replace both instances ofbegintabular
withbegintabular[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
add a comment |
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.
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.
answered Dec 13 at 2:07
kraDracsO
357
357
The reason for the whitespace above thetabular
environment is that thetabular
environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nestedtabular
environments, the best way to get rid of the unwanted whitespace is to replace both instances ofbegintabular
withbegintabular[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
add a comment |
The reason for the whitespace above thetabular
environment is that thetabular
environment comprises 5 rather than just 3 rows, with the first two rows being left empty. Assuming you wanted to keep using nestedtabular
environments, the best way to get rid of the unwanted whitespace is to replace both instances ofbegintabular
withbegintabular[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
add a comment |
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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