如何将 ToC 页面包含在 mPDF 的页数统计中?

发布于 2024-12-13 14:58:20 字数 556 浏览 0 评论 0原文

我有一份 30 多页的“报告”。我需要将 mPDF ToC 放在第 3 页但是我需要将下一页显示为 ToC 中的第 4 页,而不是像 mPDF 那样显示为第 3 页。

现在我有:

Page - Subject
01 - Front
02 - Notes
03 - ToC <<<< Plz, note the page number
04 - First useful topic
05 - [Other]

但是我的目录是这样显示的:

First Useful Topic ............... 03
[Other]........................... 04

计数显然是错误的。 我需要它是:

First Useful Topic ............... 04
[Other]........................... 05

请问我如何在 mPDF 中完成它?

太感谢了。

I have a 'report' with more than 30 pages. I need to place the mPDF ToC at the 3th page but I need that following page to be showed as 4th page at ToC, not 3th page as mPDF does.

Now I have:

Page - Subject
01 - Front
02 - Notes
03 - ToC <<<< Plz, note the page number
04 - First useful topic
05 - [Other]

But my ToC is showed this way:

First Useful Topic ............... 03
[Other]........................... 04

The counting is clearly wrong.
I need it to be:

First Useful Topic ............... 04
[Other]........................... 05

How can I accomplish it in mPDF, please?

Thank you so much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

往日情怀 2024-12-20 14:58:20

我假设您只是按如下方式插入目录:

$mpdf->TOCpagebreak();

使用重置页码 4

$mpdf->WriteHTML('<pagebreak resetpagenum="4" suppress="off" />');

您可以在编写第 4 页的内容之前

I assume you're simply inserting your TOC as follows:

$mpdf->TOCpagebreak();

You can reset the page number of 4 using

$mpdf->WriteHTML('<pagebreak resetpagenum="4" suppress="off" />');

right before you write the content for page 4

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文