You can use handlebars to reach this
{{#if @last}} <table id="Totals" class="full-width" > {{/if}}Or implement your own helper if you need some extra logic
// helper function ifLastPage(index, options) { if (options.data.root.$pdf.pages.length - 1 === index) { return options.fn(this) } return '' }