currently I write Css like this, but I don't know how to embedded image and layout elements @page { @bottom{ margin-bottom: 60px; color: green content: "P"counter(page); } }
You can change the footer on odd and even pages if you are doing duplex page layout, using @page:left and @page:right. And you can use named pages to change the footer or disable it for certain sections. Check out page selectors.
At the moment there is no :last @page selector, so the only way to do this is with awkward mechanisms like putting a bottom page float at the end of the table.