我目前正在使用 Symfony2 for PHP 和 SpraedPDFGeneratorBundle,它使用飞碟生成 PDF。
我需要让用户输入一个起始编号页来打印带有编号页的表单。如果我做一些简单的事情
@page {
counter-increment: page 5;
...
@top-right {
content: counter(page);
};
}
生成的 PDF 不会将每页增加 5。我这样做是为了测试功能,因为预期的代码是
@page {
...
@top-right {
content: counter(page);
};
}
@page:first {
counter-increment: page {{ startingPage-1 }}; /* The last part is Twig code for printing the starting page dynamically */
}
为什么会这样?