Can I use Japanese in PPT file with the Report Generator?
1 回表示 (過去 30 日間)
古いコメントを表示
I have used Japanese to make pdf in Report Generator.
This week I have tried using Japanese to make ppt file in Report Generator. But I can't.
Can I use Japanese to make ppt file in Report Generator?
0 件のコメント
回答 (2 件)
Utsav Agrawal
2020 年 6 月 19 日
It is my understanding that you want to use Japanese in a PPT file created with MATLAB report generator.
One way of doing this would be create a report as a word document first and then convert it to a PowerPoint file.
To create a report as a word document, set the File format to “Word Document (RTF)” in Report options inside MATLAB report generator.
After completing the word document, you can convert it into a PPT file.
0 件のコメント
Rahul Singhal
2020 年 7 月 21 日
Hi Yoshio,
Yes, you should be able to add Japanese characters in a presentation.
In the below example, I added both english and japanese characters in the presentation and ran it in my english machine.
% Create a presentation
import mlreportgen.ppt.*
ppt = Presentation("myPresentation3.pptx");
open(ppt);
% Add a slide to the presentation
slide = add(ppt,"Title and Content");
% Replace the title for the slide
replace(slide,"Title","Slide with Japanese Content");
% Create paragraph for the content of the slide
japaneseStr = [char(26085) char(26412)];
para = Paragraph("Japanese content: ");
append(para,Text(japaneseStr));
% Replace the content for the slide with the paragraph
replace(slide,"Content",para);
% Close and view the presentation
close(ppt);
rptview(ppt);
Output:
![Sample Output](https://www.mathworks.com/matlabcentral/answers/uploaded_files/334908/Sample%20Output.jpeg)
Thanks,
Rahul
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!