Lack of spacing in a complex table structureLack of spacing in table due to text blurring into the borders
What Happens when Passenger Refuses to Fly Boeing 737 Max?
This equation is outside the page, how to modify it
How to discourage/prevent PCs from using door choke-points?
Good allowance savings plan?
Are there situations where a child is permitted to refer to their parent by their first name?
When is a batch class instantiated when you schedule it?
What is the difference between "shut" and "close"?
Why would a jet engine that runs at temps excess of 2000°C burn when it crashes?
Unreachable code, but reachable with exception
infinitive telling the purpose
Gravity alteration as extermination tool viable?
What to do when during a meeting client people start to fight (even physically) with each others?
Is all copper pipe pretty much the same?
Potentiometer like component
Why don't MCU characters ever seem to have language issues?
What exactly is the purpose of connection links straped between the rocket and the launch pad
When two POV characters meet
Touchscreen-controlled dentist office snowman collector game
How does Dispel Magic work against Stoneskin?
What wound would be of little consequence to a biped but terrible for a quadruped?
Should we release the security issues we found in our product as CVE or we can just update those on weekly release notes?
Giving Plot options defined outside of the Plot expression
Why does Deadpool say "You're welcome, Canada," after shooting Ryan Reynolds in the end credits?
Playing ONE triplet (not three)
Lack of spacing in a complex table structure
Lack of spacing in table due to text blurring into the borders
Following this post, I have another table in latex:
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{mathtools}
usepackage{tabularx}
usepackage[math]{cellspace}
setlength{cellspacetoplimit}{3pt}
setlength{cellspacebottomlimit}{3pt}
newcolumntype{?}{!{vrule width 3pt}}
usepackage{makecell}
begin{document}
begin{table*}[!t]
footnotesize
centering
caption{Example of a table}
label{sth}
begin{tabular}{>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}?>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|}
cline{2-11}
& multicolumn{5}{c?}{X^{tr} (mathrm{english text})} & multicolumn{5}{c|}{Y^{yu} (mathrm{english text})} \ cline{2-11}
multirow{-2}{*}{} & mathscr{A}_1 & mathscr{A}_2 & mathscr{A}_3 & mathscr{A}_4 & mathscr{A}_5 & mathscr{A}_1 & mathscr{A}_2 & mathscr{A}_3 & mathscr{A}_4 & mathscr{A}_5 \ hline
multicolumn{1}{|c|}{1} & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 \ hline
multicolumn{1}{|c|}{2} & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 \ hline
end{tabular}
end{table*}
end{document}
I have multiple problems with my effort.
- why does -2* appear in the first column?
- I tried to get rid of vertical and horizontal lines but I need to retain a bold black divider in the middle. so, I don't know which lines to delete.
- the formulas are blurring into the lines so should I remove lines. I tried to give an extra gap around each box. is there a better way? my method does not seem to work for the first row at the top.
- The "english text" does not appear in the second row as it should with space in between. what I tried is to write everything in the table as a math formula but this is generating errors. can someone sort this out?
Mainly I need help to make this table more readable and resolve the error messages that are generated. Please suggest changes.
tables tabularx
add a comment |
Following this post, I have another table in latex:
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{mathtools}
usepackage{tabularx}
usepackage[math]{cellspace}
setlength{cellspacetoplimit}{3pt}
setlength{cellspacebottomlimit}{3pt}
newcolumntype{?}{!{vrule width 3pt}}
usepackage{makecell}
begin{document}
begin{table*}[!t]
footnotesize
centering
caption{Example of a table}
label{sth}
begin{tabular}{>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}?>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|}
cline{2-11}
& multicolumn{5}{c?}{X^{tr} (mathrm{english text})} & multicolumn{5}{c|}{Y^{yu} (mathrm{english text})} \ cline{2-11}
multirow{-2}{*}{} & mathscr{A}_1 & mathscr{A}_2 & mathscr{A}_3 & mathscr{A}_4 & mathscr{A}_5 & mathscr{A}_1 & mathscr{A}_2 & mathscr{A}_3 & mathscr{A}_4 & mathscr{A}_5 \ hline
multicolumn{1}{|c|}{1} & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 \ hline
multicolumn{1}{|c|}{2} & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 \ hline
end{tabular}
end{table*}
end{document}
I have multiple problems with my effort.
- why does -2* appear in the first column?
- I tried to get rid of vertical and horizontal lines but I need to retain a bold black divider in the middle. so, I don't know which lines to delete.
- the formulas are blurring into the lines so should I remove lines. I tried to give an extra gap around each box. is there a better way? my method does not seem to work for the first row at the top.
- The "english text" does not appear in the second row as it should with space in between. what I tried is to write everything in the table as a math formula but this is generating errors. can someone sort this out?
Mainly I need help to make this table more readable and resolve the error messages that are generated. Please suggest changes.
tables tabularx
add a comment |
Following this post, I have another table in latex:
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{mathtools}
usepackage{tabularx}
usepackage[math]{cellspace}
setlength{cellspacetoplimit}{3pt}
setlength{cellspacebottomlimit}{3pt}
newcolumntype{?}{!{vrule width 3pt}}
usepackage{makecell}
begin{document}
begin{table*}[!t]
footnotesize
centering
caption{Example of a table}
label{sth}
begin{tabular}{>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}?>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|}
cline{2-11}
& multicolumn{5}{c?}{X^{tr} (mathrm{english text})} & multicolumn{5}{c|}{Y^{yu} (mathrm{english text})} \ cline{2-11}
multirow{-2}{*}{} & mathscr{A}_1 & mathscr{A}_2 & mathscr{A}_3 & mathscr{A}_4 & mathscr{A}_5 & mathscr{A}_1 & mathscr{A}_2 & mathscr{A}_3 & mathscr{A}_4 & mathscr{A}_5 \ hline
multicolumn{1}{|c|}{1} & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 \ hline
multicolumn{1}{|c|}{2} & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 \ hline
end{tabular}
end{table*}
end{document}
I have multiple problems with my effort.
- why does -2* appear in the first column?
- I tried to get rid of vertical and horizontal lines but I need to retain a bold black divider in the middle. so, I don't know which lines to delete.
- the formulas are blurring into the lines so should I remove lines. I tried to give an extra gap around each box. is there a better way? my method does not seem to work for the first row at the top.
- The "english text" does not appear in the second row as it should with space in between. what I tried is to write everything in the table as a math formula but this is generating errors. can someone sort this out?
Mainly I need help to make this table more readable and resolve the error messages that are generated. Please suggest changes.
tables tabularx
Following this post, I have another table in latex:
documentclass{article}
usepackage[utf8]{inputenc}
usepackage{mathtools}
usepackage{tabularx}
usepackage[math]{cellspace}
setlength{cellspacetoplimit}{3pt}
setlength{cellspacebottomlimit}{3pt}
newcolumntype{?}{!{vrule width 3pt}}
usepackage{makecell}
begin{document}
begin{table*}[!t]
footnotesize
centering
caption{Example of a table}
label{sth}
begin{tabular}{>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}?>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|>{$}Sc<{$}|}
cline{2-11}
& multicolumn{5}{c?}{X^{tr} (mathrm{english text})} & multicolumn{5}{c|}{Y^{yu} (mathrm{english text})} \ cline{2-11}
multirow{-2}{*}{} & mathscr{A}_1 & mathscr{A}_2 & mathscr{A}_3 & mathscr{A}_4 & mathscr{A}_5 & mathscr{A}_1 & mathscr{A}_2 & mathscr{A}_3 & mathscr{A}_4 & mathscr{A}_5 \ hline
multicolumn{1}{|c|}{1} & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 \ hline
multicolumn{1}{|c|}{2} & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 & 5413.35 \ hline
end{tabular}
end{table*}
end{document}
I have multiple problems with my effort.
- why does -2* appear in the first column?
- I tried to get rid of vertical and horizontal lines but I need to retain a bold black divider in the middle. so, I don't know which lines to delete.
- the formulas are blurring into the lines so should I remove lines. I tried to give an extra gap around each box. is there a better way? my method does not seem to work for the first row at the top.
- The "english text" does not appear in the second row as it should with space in between. what I tried is to write everything in the table as a math formula but this is generating errors. can someone sort this out?
Mainly I need help to make this table more readable and resolve the error messages that are generated. Please suggest changes.
tables tabularx
tables tabularx
asked 2 mins ago
user_1_1_1user_1_1_1
1756
1756
add a comment |
add a comment |
0
active
oldest
votes
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%2f479381%2flack-of-spacing-in-a-complex-table-structure%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
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%2f479381%2flack-of-spacing-in-a-complex-table-structure%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