```<table style="width: 100%; margin-top: 10px;...
# advancedpdf
e
Copy code
<table style="width: 100%; margin-top: 10px;">
                                            <!-- start items -->
                                            <#list transaction.item as item>
                                                <#if item_index==0>
                                                    <thead>
                                                        <tr>
                                                            <th align="center" colspan="3" style="padding: 10px 6px;">
                                                                ${item.quantity@label}</th>
                                                            <th colspan="12" style="padding: 10px 6px;">
                                                                ${item.item@label}</th>
                                                            <th align="right" colspan="4" style="padding: 10px 6px;">
                                                                Unit Price</th>
                                                            <th align="right" colspan="4" style="padding: 10px 6px;">
                                                                Line Total</th>
                                                        </tr>
                                                    </thead>
                                                </#if>
                                                <tr>
                                                    <td align="center" colspan="3" line-height="150%">${item.quantity}
                                                    </td>
                                                    <td colspan="12"><span
                                                            style="font-weight: bold; line-height: 150%; color: #333333;">${item.item}</span>:
                                                        ${item.description}</td>
                                                    <td align="right" colspan="4">${item.rate}</td>
                                                    <td align="right" colspan="4">${item.amount}</td>
                                                </tr>
                                            </#list><!-- end items -->
                                        </table>