Info
この質問は閉じられています。 編集または回答するには再度開いてください。
How to set up report margin correctly?
1 回表示 (過去 30 日間)
古いコメントを表示
The report page layout is coded this way:
import mlreportgen.dom.*
rpt = Document('myReport','pdf');
open(rpt);
p = PDFPageLayout();
p.PageSize.Orientation = 'Portrait';
p.PageSize.Height = '11in';
p.PageSize.Width = '8.5in';
% margins
p.PageMargins.Top = '0.1in'; % <<==== the top margin
p.PageMargins.Bottom = '0.3in';
p.PageMargins.Left = '0.3in';
p.PageMargins.Right = '0.3in';
append(rpt, p);
However, even by setting the TOP margins to 0, the output page always has a TOP margin about 1 inch margins.
What did I do wring?
Thank you for help!
0 件のコメント
回答 (1 件)
Srivardhan Gadila
2020 年 11 月 2 日
As per the documentation of mlreportgen.dom.PageMargins class: "For PDF, the total height of the top margin equals the value of the Top property of this object plus the height of the Header property. The body text starts below the header. For Word documents, the top margin and header expand to prevent overlapping of the header and the body text. Similarly, the total height of the PDF bottom margin equals the value of the Bottom property of this object plus the height of the Footer property. The body text ends above the footer. For Word documents, the footer expands to prevent overlapping the body text."
0 件のコメント
この質問は閉じられています。
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!