csvsimple vs. conditional row coloring
I've a CSV file what I want process with csvsimple. My desire is to color some rows based on a conditional (one specified column has bigger value). Here is an MWE:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
begin{tabular}{*{4}{c}}
csvreader[
head to column names,
before line={ifnumd>1rowcolor{gray}fi},
late after line={\}
]{mwe.csv}{}{
a&b&c&d
}
end{tabular}
end{document}
In this case I gave an error message:
! Misplaced noalign.
<recently read> noalign
l.18 }
How can I solve it?
conditionals csv csvsimple rowcolor
add a comment |
I've a CSV file what I want process with csvsimple. My desire is to color some rows based on a conditional (one specified column has bigger value). Here is an MWE:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
begin{tabular}{*{4}{c}}
csvreader[
head to column names,
before line={ifnumd>1rowcolor{gray}fi},
late after line={\}
]{mwe.csv}{}{
a&b&c&d
}
end{tabular}
end{document}
In this case I gave an error message:
! Misplaced noalign.
<recently read> noalign
l.18 }
How can I solve it?
conditionals csv csvsimple rowcolor
add a comment |
I've a CSV file what I want process with csvsimple. My desire is to color some rows based on a conditional (one specified column has bigger value). Here is an MWE:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
begin{tabular}{*{4}{c}}
csvreader[
head to column names,
before line={ifnumd>1rowcolor{gray}fi},
late after line={\}
]{mwe.csv}{}{
a&b&c&d
}
end{tabular}
end{document}
In this case I gave an error message:
! Misplaced noalign.
<recently read> noalign
l.18 }
How can I solve it?
conditionals csv csvsimple rowcolor
I've a CSV file what I want process with csvsimple. My desire is to color some rows based on a conditional (one specified column has bigger value). Here is an MWE:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
begin{tabular}{*{4}{c}}
csvreader[
head to column names,
before line={ifnumd>1rowcolor{gray}fi},
late after line={\}
]{mwe.csv}{}{
a&b&c&d
}
end{tabular}
end{document}
In this case I gave an error message:
! Misplaced noalign.
<recently read> noalign
l.18 }
How can I solve it?
conditionals csv csvsimple rowcolor
conditionals csv csvsimple rowcolor
asked 2 hours ago
uzsolt
899714
899714
add a comment |
add a comment |
2 Answers
2
active
oldest
votes
Your error stems from rowcolor
not being at the very beginning of the row. You can fix that by adding an additional \
:
before line={ifnumd>1\rowcolor{gray}fi},
However, it would be better to use a filter (section 3.4 of the manual) to process conditionals:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
late after line=\,
full filter=ifnumgreater{d}{1}
{\rowcolor{gray}csvfilteraccept}
{csvfilteraccept}
]{mwe.csv}{}{a & b & c & d}
end{document}
Here we are using ifnumgreater
to check for d>1 and we print the content of the line with csvfilteraccept
weather the condition holds or not, since we don't want to discard the content. We just add rowcolor{gray}
to format the output and we still need an additional \
to make sure that rowcolor
is at the very beginning of the row (which is awkward).
Which yields:
The formatting of the table still needs to be handled separately.
It doesn't work well if you've a third line in CSV ("1,1,2,2") or the second line matches too.
– uzsolt
23 mins ago
add a comment |
Try this solution. It adds a line break after each row.
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
5,3,9,1
7,8,2,9
5,3,9,1
5,3,9,1
7,8,2,9
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
before line={ifnumd>1\rowcolor{gray}else\fi}
]{mwe.csv}{}{
a&b&c&d
}
end{document}
If you don't else\ then you will have this result:
New contributor
There are empty lines. Compare it without thebefore line={ifnumd>1\rowcolor{gray}else\fi}
option!
– uzsolt
12 mins ago
I want equal height :)
– uzsolt
8 mins ago
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%2f468208%2fcsvsimple-vs-conditional-row-coloring%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
Your error stems from rowcolor
not being at the very beginning of the row. You can fix that by adding an additional \
:
before line={ifnumd>1\rowcolor{gray}fi},
However, it would be better to use a filter (section 3.4 of the manual) to process conditionals:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
late after line=\,
full filter=ifnumgreater{d}{1}
{\rowcolor{gray}csvfilteraccept}
{csvfilteraccept}
]{mwe.csv}{}{a & b & c & d}
end{document}
Here we are using ifnumgreater
to check for d>1 and we print the content of the line with csvfilteraccept
weather the condition holds or not, since we don't want to discard the content. We just add rowcolor{gray}
to format the output and we still need an additional \
to make sure that rowcolor
is at the very beginning of the row (which is awkward).
Which yields:
The formatting of the table still needs to be handled separately.
It doesn't work well if you've a third line in CSV ("1,1,2,2") or the second line matches too.
– uzsolt
23 mins ago
add a comment |
Your error stems from rowcolor
not being at the very beginning of the row. You can fix that by adding an additional \
:
before line={ifnumd>1\rowcolor{gray}fi},
However, it would be better to use a filter (section 3.4 of the manual) to process conditionals:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
late after line=\,
full filter=ifnumgreater{d}{1}
{\rowcolor{gray}csvfilteraccept}
{csvfilteraccept}
]{mwe.csv}{}{a & b & c & d}
end{document}
Here we are using ifnumgreater
to check for d>1 and we print the content of the line with csvfilteraccept
weather the condition holds or not, since we don't want to discard the content. We just add rowcolor{gray}
to format the output and we still need an additional \
to make sure that rowcolor
is at the very beginning of the row (which is awkward).
Which yields:
The formatting of the table still needs to be handled separately.
It doesn't work well if you've a third line in CSV ("1,1,2,2") or the second line matches too.
– uzsolt
23 mins ago
add a comment |
Your error stems from rowcolor
not being at the very beginning of the row. You can fix that by adding an additional \
:
before line={ifnumd>1\rowcolor{gray}fi},
However, it would be better to use a filter (section 3.4 of the manual) to process conditionals:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
late after line=\,
full filter=ifnumgreater{d}{1}
{\rowcolor{gray}csvfilteraccept}
{csvfilteraccept}
]{mwe.csv}{}{a & b & c & d}
end{document}
Here we are using ifnumgreater
to check for d>1 and we print the content of the line with csvfilteraccept
weather the condition holds or not, since we don't want to discard the content. We just add rowcolor{gray}
to format the output and we still need an additional \
to make sure that rowcolor
is at the very beginning of the row (which is awkward).
Which yields:
The formatting of the table still needs to be handled separately.
Your error stems from rowcolor
not being at the very beginning of the row. You can fix that by adding an additional \
:
before line={ifnumd>1\rowcolor{gray}fi},
However, it would be better to use a filter (section 3.4 of the manual) to process conditionals:
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
1,3,2,1
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
late after line=\,
full filter=ifnumgreater{d}{1}
{\rowcolor{gray}csvfilteraccept}
{csvfilteraccept}
]{mwe.csv}{}{a & b & c & d}
end{document}
Here we are using ifnumgreater
to check for d>1 and we print the content of the line with csvfilteraccept
weather the condition holds or not, since we don't want to discard the content. We just add rowcolor{gray}
to format the output and we still need an additional \
to make sure that rowcolor
is at the very beginning of the row (which is awkward).
Which yields:
The formatting of the table still needs to be handled separately.
edited 37 mins ago
answered 57 mins ago
DG'
9,20511741
9,20511741
It doesn't work well if you've a third line in CSV ("1,1,2,2") or the second line matches too.
– uzsolt
23 mins ago
add a comment |
It doesn't work well if you've a third line in CSV ("1,1,2,2") or the second line matches too.
– uzsolt
23 mins ago
It doesn't work well if you've a third line in CSV ("1,1,2,2") or the second line matches too.
– uzsolt
23 mins ago
It doesn't work well if you've a third line in CSV ("1,1,2,2") or the second line matches too.
– uzsolt
23 mins ago
add a comment |
Try this solution. It adds a line break after each row.
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
5,3,9,1
7,8,2,9
5,3,9,1
5,3,9,1
7,8,2,9
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
before line={ifnumd>1\rowcolor{gray}else\fi}
]{mwe.csv}{}{
a&b&c&d
}
end{document}
If you don't else\ then you will have this result:
New contributor
There are empty lines. Compare it without thebefore line={ifnumd>1\rowcolor{gray}else\fi}
option!
– uzsolt
12 mins ago
I want equal height :)
– uzsolt
8 mins ago
add a comment |
Try this solution. It adds a line break after each row.
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
5,3,9,1
7,8,2,9
5,3,9,1
5,3,9,1
7,8,2,9
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
before line={ifnumd>1\rowcolor{gray}else\fi}
]{mwe.csv}{}{
a&b&c&d
}
end{document}
If you don't else\ then you will have this result:
New contributor
There are empty lines. Compare it without thebefore line={ifnumd>1\rowcolor{gray}else\fi}
option!
– uzsolt
12 mins ago
I want equal height :)
– uzsolt
8 mins ago
add a comment |
Try this solution. It adds a line break after each row.
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
5,3,9,1
7,8,2,9
5,3,9,1
5,3,9,1
7,8,2,9
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
before line={ifnumd>1\rowcolor{gray}else\fi}
]{mwe.csv}{}{
a&b&c&d
}
end{document}
If you don't else\ then you will have this result:
New contributor
Try this solution. It adds a line break after each row.
documentclass[12pt]{article}
usepackage{filecontents}
usepackage{csvsimple}
usepackage[table]{xcolor}
begin{document}
begin{filecontents*}{mwe.csv}
a,b,c,d
1,1,2,2
5,3,9,1
7,8,2,9
5,3,9,1
5,3,9,1
7,8,2,9
end{filecontents*}
csvreader[tabular=cccc,
head to column names,
before line={ifnumd>1\rowcolor{gray}else\fi}
]{mwe.csv}{}{
a&b&c&d
}
end{document}
If you don't else\ then you will have this result:
New contributor
edited 11 mins ago
New contributor
answered 25 mins ago
Compiii
11
11
New contributor
New contributor
There are empty lines. Compare it without thebefore line={ifnumd>1\rowcolor{gray}else\fi}
option!
– uzsolt
12 mins ago
I want equal height :)
– uzsolt
8 mins ago
add a comment |
There are empty lines. Compare it without thebefore line={ifnumd>1\rowcolor{gray}else\fi}
option!
– uzsolt
12 mins ago
I want equal height :)
– uzsolt
8 mins ago
There are empty lines. Compare it without the
before line={ifnumd>1\rowcolor{gray}else\fi}
option!– uzsolt
12 mins ago
There are empty lines. Compare it without the
before line={ifnumd>1\rowcolor{gray}else\fi}
option!– uzsolt
12 mins ago
I want equal height :)
– uzsolt
8 mins ago
I want equal height :)
– uzsolt
8 mins ago
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%2f468208%2fcsvsimple-vs-conditional-row-coloring%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