Save Live Script automatically as PDF

조회 수: 257 (최근 30일)
Jana Pecke
Jana Pecke 2020년 11월 16일
답변: Pierre Harouimi 2023년 4월 3일
Hello everyone,
I have a problem!
I wrote a program for the calculation of test data in the App Designer. The test results of the test person should be given to them in a report. Since I do not have access to the report generator, I have compiled the results in a live script and output them. I have set the button on the right to "hide code" and to save I press "save" and then "export to pdf".
Since I would like to compile the program as a standalone program, I cannot press the buttons myself and save the live script as a PDF.
I already tried the following:
matlab.internal.liveeditor.executeAndSave (which ('Handout.mlx'));
matlab.internal.liveeditor.openAndConvert ('Handout.mlx', 'test.pdf');
Unfortunately, the code is always displayed there! But the design fits :-)
Is there another way to automatically save the LiveScript as PDF without code?

채택된 답변

Martin Knelleken
Martin Knelleken 2021년 3월 25일
Hi Jana,
Thanks for using the Live Editor!
Actually, your workflow is expected to work. Unfortunately, there is a known issue that the 'Hide Code' state is not reliably stored with the document when no other edit opereation is made. We're working on fixing that bug.
As a workaound, you should try again to switch to Hide Code View and additionally make another change to the document. E.g. type a charachter and delete it. Then save. If you now close and reopen the Live Script, it should appear in 'Hide Code' mode.
With that, openAndConvert should export it properly without code.
Btw, I strongly recommend to not use openAndConvert and executeAndSave! Those functions were made for internal purposes and can be changed or removed at any time. Furthermore, they're not bullet-proof tested and may behave unexpectedly or wrongly.
However, since you're using it anyway, there is another solution for your worklfow. You can call
matlab.internal.liveeditor.openAndConvert ('Handout.mlx', 'test.pdf', 'HideCode', true);
With that additional argument, it always exports without code, regardless of the state of the document.
Again, be careful with using openAndConvert. Don't rely on its stability or existence in upcoming releases,
We're actively working on a public and well documented API to export Live Scripts programmatically. Stay tuned.
I hope, some of this helps.
Kind regards
- Martin
  댓글 수: 2
steve l
steve l 2022년 1월 13일
If we're not supposed to use openAndConvert and executeAndSave what are we supposed to use?
Martin Knelleken
Martin Knelleken 2022년 1월 24일
@steve l: Actually, there is no alternative yet. We're working on a replacement for both. It will come in one of the very next releases. If the internal functions above fulfil your needs, you can continue to usem them for the time being. Just be aware of the potential weknesses mentioned above.

댓글을 달려면 로그인하십시오.

추가 답변 (2개)

Sahithi Kanumarlapudi
Sahithi Kanumarlapudi 2020년 11월 18일
Hi,
From your question I understand that you would like to store the output of a live script without the code. If that is what you are intending to do you can use the 'publish()' function to view the output in html format.
You can refer to the below link to find more info and examples on how to use publish function
Hope this helps!
  댓글 수: 1
Jana Pecke
Jana Pecke 2020년 11월 19일
thank you for your Answer.
It works that i dont see my Code but I also can not see my predesigned things like headings and co...
do you have another idear?

댓글을 달려면 로그인하십시오.


Pierre Harouimi
Pierre Harouimi 2023년 4월 3일
You can now use (since R2022a release) the export function:
pdffile = export("myscript.mlx","myconvertedpdffile.pdf")

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by