How to create those tables in Latex? (value table)Diagonal lines in table cellHow to Create Comparison Tables in LaTeX?table of tables using memoirHow to increase the vertical space between two “touching” tables?How to create a new line in the table cellhow to create tableshow to create a table with the text of columns centered and justified?how to adjust the header of a table ?How to insert a table in TikzEdt? (Create Tikz diagrams with tables using a GUI)How should I create a table in Latex?Tables and Picture inside a main table
What do you call the hair or body hair you trim off your body?
Capital gains on stocks sold to take initial investment off the table
Which creature is depicted in this Xanathar's Guide illustration of a war mage?
How to describe a building set which is like LEGO without using the "LEGO" word?
What is the status of the Lannisters after Season 8 Episode 5, "The Bells"?
Does the Rogue's Reliable Talent feature work for thieves' tools, since the rogue is proficient in them?
Testing if os.path.exists with ArcPy?
Is random forest for regression a 'true' regression?
Why when I add jam to my tea it stops producing thin "membrane" on top?
Slice a list based on an index and items behind it in python
Does the wearer know what items are in which patch in the Robe of Useful items?
Windows 10 lock screen - display my own random images
Network latencies between opposite ends of the Earth
Why is the Advance Variation considered strong vs the Caro-Kann but not vs the Scandinavian?
Can my American children re-enter the USA by International flight with a passport card? Being that their passport book has expired
the correct order of manual install WP and SSL on server
What information exactly does an instruction cache store?
Will there be more tax deductions if I put the house completely under my name, versus doing a joint ownership?
To whom did Varys write those letters in Game of Thrones S8E5?
How to redirect stdout to a file, and stdout+stderr to another one?
Will consteval functions allow template parameters dependent on function arguments?
Holding rent money for my friend which amounts to over $10k?
Single word that parallels "Recent" when discussing the near future
Why did the UK remove the 'European Union' from its passport?
How to create those tables in Latex? (value table)
Diagonal lines in table cellHow to Create Comparison Tables in LaTeX?table of tables using memoirHow to increase the vertical space between two “touching” tables?How to create a new line in the table cellhow to create tableshow to create a table with the text of columns centered and justified?how to adjust the header of a table ?How to insert a table in TikzEdt? (Create Tikz diagrams with tables using a GUI)How should I create a table in Latex?Tables and Picture inside a main table
I'm looking for a code to create those two tables, could someone help me?
tables
add a comment |
I'm looking for a code to create those two tables, could someone help me?
tables
3
Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start withbegintabularcccc
orbeginarraycccc
. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell
– leandriis
May 4 at 9:07
add a comment |
I'm looking for a code to create those two tables, could someone help me?
tables
I'm looking for a code to create those two tables, could someone help me?
tables
tables
asked May 4 at 9:01
Joshua.MJoshua.M
71
71
3
Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start withbegintabularcccc
orbeginarraycccc
. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell
– leandriis
May 4 at 9:07
add a comment |
3
Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start withbegintabularcccc
orbeginarraycccc
. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell
– leandriis
May 4 at 9:07
3
3
Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with
begintabularcccc
or beginarraycccc
. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell– leandriis
May 4 at 9:07
Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with
begintabularcccc
or beginarraycccc
. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell– leandriis
May 4 at 9:07
add a comment |
1 Answer
1
active
oldest
votes
For this I'd use array
I think (it is maths after all and not a table containing text). Additionally I'd use siunitx
and its S
type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:
documentclass[border=3.14]standalone
usepackagesiunitx
usepackagebooktabs
begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument
EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.
documentclass[border=3.14]standalone
usepackagesiunitx
begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument
Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.
– Sebastiano
May 4 at 9:16
@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce usec|SSS
instead for thearray
's preamble andhline
instead ofmidrule
, droptoprule
andbottomrule
, and you got what you want.
– Skillmon
May 4 at 9:21
@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.
– Skillmon
May 4 at 9:23
No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.
– Sebastiano
May 4 at 9:24
1
@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.
– Skillmon
May 4 at 10:17
|
show 2 more comments
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%2f489116%2fhow-to-create-those-tables-in-latex-value-table%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
For this I'd use array
I think (it is maths after all and not a table containing text). Additionally I'd use siunitx
and its S
type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:
documentclass[border=3.14]standalone
usepackagesiunitx
usepackagebooktabs
begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument
EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.
documentclass[border=3.14]standalone
usepackagesiunitx
begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument
Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.
– Sebastiano
May 4 at 9:16
@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce usec|SSS
instead for thearray
's preamble andhline
instead ofmidrule
, droptoprule
andbottomrule
, and you got what you want.
– Skillmon
May 4 at 9:21
@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.
– Skillmon
May 4 at 9:23
No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.
– Sebastiano
May 4 at 9:24
1
@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.
– Skillmon
May 4 at 10:17
|
show 2 more comments
For this I'd use array
I think (it is maths after all and not a table containing text). Additionally I'd use siunitx
and its S
type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:
documentclass[border=3.14]standalone
usepackagesiunitx
usepackagebooktabs
begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument
EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.
documentclass[border=3.14]standalone
usepackagesiunitx
begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument
Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.
– Sebastiano
May 4 at 9:16
@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce usec|SSS
instead for thearray
's preamble andhline
instead ofmidrule
, droptoprule
andbottomrule
, and you got what you want.
– Skillmon
May 4 at 9:21
@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.
– Skillmon
May 4 at 9:23
No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.
– Sebastiano
May 4 at 9:24
1
@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.
– Skillmon
May 4 at 10:17
|
show 2 more comments
For this I'd use array
I think (it is maths after all and not a table containing text). Additionally I'd use siunitx
and its S
type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:
documentclass[border=3.14]standalone
usepackagesiunitx
usepackagebooktabs
begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument
EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.
documentclass[border=3.14]standalone
usepackagesiunitx
begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument
For this I'd use array
I think (it is maths after all and not a table containing text). Additionally I'd use siunitx
and its S
type columns to align the numbers at the decimal separators. But I'd not use this diagonally separated first cell myself. I'd also not use vertical rules, and the horizontal ones provided by booktabs:
documentclass[border=3.14]standalone
usepackagesiunitx
usepackagebooktabs
begindocument
$beginarraycSSS
toprule
& omega_1 & omega_2 & omega_3 \
midrule
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
bottomrule
endarray$
enddocument
EDIT: Though I don't think the following is good looking, I put it here to show the OP how to typeset his first table.
documentclass[border=3.14]standalone
usepackagesiunitx
begindocument
$beginarraySSS
omega_i & omega_1 & omega_2 & omega_3 \
hline
X(omega_i) & 1.05 & 2.34 & 0.95 \
Y(omega_i) & 2.94 & 1.03 & 3.45 \
Z(omega_i) & 10.26 & -1.05 & 1.04 \
endarray$
enddocument
edited May 4 at 10:19
answered May 4 at 9:09
SkillmonSkillmon
24.8k12351
24.8k12351
Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.
– Sebastiano
May 4 at 9:16
@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce usec|SSS
instead for thearray
's preamble andhline
instead ofmidrule
, droptoprule
andbottomrule
, and you got what you want.
– Skillmon
May 4 at 9:21
@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.
– Skillmon
May 4 at 9:23
No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.
– Sebastiano
May 4 at 9:24
1
@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.
– Skillmon
May 4 at 10:17
|
show 2 more comments
Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.
– Sebastiano
May 4 at 9:16
@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce usec|SSS
instead for thearray
's preamble andhline
instead ofmidrule
, droptoprule
andbottomrule
, and you got what you want.
– Skillmon
May 4 at 9:21
@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.
– Skillmon
May 4 at 9:23
No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.
– Sebastiano
May 4 at 9:24
1
@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.
– Skillmon
May 4 at 10:17
Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.
– Sebastiano
May 4 at 9:16
Upvote you. Please can you add the cross and the diagonal tabular? Thank you very much.
– Sebastiano
May 4 at 9:16
@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use
c|SSS
instead for the array
's preamble and hline
instead of midrule
, drop toprule
and bottomrule
, and you got what you want.– Skillmon
May 4 at 9:21
@Sebastiano leandris posted a link in his comment to the question regarding the diagonal line. I will not provide it here, as that would just be a duplicate of the answers there. I just posted what I'd prefer from a typographical point of view. The cross thing isn't pretty, vertical rules in tables in general aren't and should be used really really seldom. I will not provide it. But it isn't hard to produce use
c|SSS
instead for the array
's preamble and hline
instead of midrule
, drop toprule
and bottomrule
, and you got what you want.– Skillmon
May 4 at 9:21
@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.
– Skillmon
May 4 at 9:23
@Sebastiano if you want to you can create your own answer for the simple table with just the vertical and horizontal rule. But as I said, the diagonal line would be a duplicate, and I'd refrain from posting it here.
– Skillmon
May 4 at 9:23
No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.
– Sebastiano
May 4 at 9:24
No, no I don't remember all the questions about TeX. Forget it. I just wanted to make myself useful to help the user. Thank you very much the same.
– Sebastiano
May 4 at 9:24
1
1
@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.
– Skillmon
May 4 at 10:17
@Joshua.M as I said in the comments above, this answer is about what I'd use and about typographically good looking tables. For the diagonal cell separation there is the link posted by leandris. I'll edit my answer to include the simple case of just one vertical and one horizontal rule.
– Skillmon
May 4 at 10:17
|
show 2 more comments
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.
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%2f489116%2fhow-to-create-those-tables-in-latex-value-table%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
3
Welcome to TeX.SX! Please sohw what you have tried so far as your question currently is a do-it-for-me type of question. Reagrding the first table, you can start with
begintabularcccc
orbeginarraycccc
. Regarding the diagnoally split cell in the second table, you might want to have a look at: Diagonal lines in table cell– leandriis
May 4 at 9:07