我刚刚在我的项目中使用了 mPDF,现在遇到了这个问题。首先让我描述一下我的 PDF 结构:
- 第一页是封面。
- 第二页是目录页。
- 第三页是内容页。
所以问题是:
- 封面页和目录页有页眉、页脚、页码。我该如何删除它?
- 内容页码以no 3开头。如何将其重置为no 1?
下面是用于包含页眉和页脚的代码
$mpdf->SetHeader('{DATE j-m-Y}|{PAGENO}/2|My document');
$mpdf->SetFooter('{PAGENO}'); /* defines footer for Odd and Even Pages - placed at Outer margin */
$mpdf->SetFooter(array(
'L' => array(
'content' => 'Text to go on the left',
'font-family' => 'sans-serif',
'font-style' => 'B', /* blank, B, I, or BI */
'font-size' => '10', /* in pts */
),
'C' => array(
'content' => '- {PAGENO} -',
'font-family' => 'serif',
'font-style' => 'BI',
'font-size' => '18', /* gives default */
),
'R' => array(
'content' => 'Printed @ {DATE j-m-Y H:m}',
'font-family' => 'monospace',
'font-style' => '',
'font-size' => '10',
),
'line' => 1, /* 1 to include line below header/above footer */
), 'E' /* defines footer for Even Pages */
);
对于 TOC 页面,我在 html 中添加了这个标签
<tocpagebreak />