in reply to Re: (OT) Template toolkit latex table issue
in thread (OT) Template toolkit latex table issue

Hi thanks for your comment, I am facing problem with only tx.comments key value if I put any other keys it's works fine with both \textbf and \multicolumn. I unable to differentiate what is the issue with that if it's latex issue then it should not work with other keys values too.
  • Comment on Re^2: (OT) Template toolkit latex table issue

Replies are listed 'Best First'.
Re^3: (OT) Template toolkit latex table issue
by Corion (Patriarch) on Sep 23, 2016 at 06:23 UTC

    Have you considered looking at the .tex output files your program creates? These would be to me the most obvious thing to look at to find what LaTeχ dislikes. From there, you can maybe investigate further.

      Thank you Corion for your guidance. I solved this issue with below metthod:-

      1. Without declraing width of multicolumn.

      \\ {\bf [% tx.serial %]} & {\bf [% tx.type %]} & [% tx.item_product_code %] &  [% tx.dc %] & [% tx.currency  %] & [% tx.amount %]\\

      \multicolumn{6}{c}\bf [% tx.comments %] \\

      2. with declaring width of multicolumn for content wraapper, by declaring table inside multicolumn

      \\ {\bf [% tx.serial %]} & {\bf [% tx.type %]} & [% tx.item_product_code %] &  [% tx.dc %] & [% tx.currency  %] & [% tx.amount %]\\

      \multicolumn{5}{l}{\begin{tabular}[t]{p{4in}}

         Details: [% tx.comments %]

           \end{tabular}}\\
Re^3: (OT) Template toolkit latex table issue
by aarya (Initiate) on Sep 23, 2016 at 05:49 UTC
    Is there any way, how can I check it is malformed input? that will be very helpful