필터 지우기
필터 지우기

Avoid Page Break in MATLAB Report Generator

조회 수: 6 (최근 30일)
Pablo Manrique Merchán
Pablo Manrique Merchán 2024년 4월 25일
답변: Raj 2024년 4월 26일
I am using MATLAB Report Generator to create a PDF report. By default, it inserts a page break after each section. How can I disable that option?

답변 (1개)

Raj
Raj 2024년 4월 26일
There are two approaches you might be taking to generate a PDF report in MATLAB.
  • Through Template- If you are using a template to generate report, Unde the Layout, you will find an option to control page breaks after sections. Update the template according to your requirements.
  • Through MATLAB script- If you're using MATLAB code to generate the report, you can change where the pages breaks by editing the code. To do this, remove the following code lines you may find after each section where you do not intend to break the page-
br = PageBreak();
append(d,br); %d = Document("mydoc","pdf");
For better understanding on how to use MATLAB Report Generator, you can refer to the following resources-
I hope this solves your query!

카테고리

Help CenterFile Exchange에서 MATLAB Report Generator에 대해 자세히 알아보기

제품


릴리스

R2024a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by