csvsimple vs. conditional row coloring












2














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?










share|improve this question



























    2














    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?










    share|improve this question

























      2












      2








      2


      0





      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?










      share|improve this question













      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked 2 hours ago









      uzsolt

      899714




      899714






















          2 Answers
          2






          active

          oldest

          votes


















          3














          Your error stems from rowcolornot 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:



          ROW!!!



          The formatting of the table still needs to be handled separately.






          share|improve this answer























          • 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





















          0














          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}



          enter image description here



          If you don't else\ then you will have this result:



          enter image description here






          share|improve this answer










          New contributor




          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • 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











          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%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









          3














          Your error stems from rowcolornot 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:



          ROW!!!



          The formatting of the table still needs to be handled separately.






          share|improve this answer























          • 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


















          3














          Your error stems from rowcolornot 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:



          ROW!!!



          The formatting of the table still needs to be handled separately.






          share|improve this answer























          • 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
















          3












          3








          3






          Your error stems from rowcolornot 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:



          ROW!!!



          The formatting of the table still needs to be handled separately.






          share|improve this answer














          Your error stems from rowcolornot 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:



          ROW!!!



          The formatting of the table still needs to be handled separately.







          share|improve this answer














          share|improve this answer



          share|improve this answer








          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




















          • 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













          0














          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}



          enter image description here



          If you don't else\ then you will have this result:



          enter image description here






          share|improve this answer










          New contributor




          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • 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
















          0














          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}



          enter image description here



          If you don't else\ then you will have this result:



          enter image description here






          share|improve this answer










          New contributor




          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.


















          • 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














          0












          0








          0






          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}



          enter image description here



          If you don't else\ then you will have this result:



          enter image description here






          share|improve this answer










          New contributor




          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          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}



          enter image description here



          If you don't else\ then you will have this result:



          enter image description here







          share|improve this answer










          New contributor




          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          share|improve this answer



          share|improve this answer








          edited 11 mins ago





















          New contributor




          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.









          answered 25 mins ago









          Compiii

          11




          11




          New contributor




          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.





          New contributor





          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.






          Compiii is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
          Check out our Code of Conduct.












          • 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


















          • 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
















          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


















          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%2f468208%2fcsvsimple-vs-conditional-row-coloring%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

          Understanding the information contained in the Deep Space Network XML data?

          Ross-on-Wye

          Eastern Orthodox Church