Report Generator; how to deal with special characters & indenting
3 次查看(过去 30 天)
显示 更早的评论
Dear Matlab-Users
I'm currently working on a template file to generate pdf reports with ReportGenerator. The report summarizes user input from a GUI, and I face two problems. Any help is highly appreciated.
1. How to deal with special characters? Greek letters need to be included in the report and '\mu' does not work. Moreover, '\n' does not work to include line breaks in strings. 2. Is it possible to control the indenting? The system automatically sets massive indents at the beginning of new chapters and I wish to set it to zero.
Many thanks in advance.
Petra
0 个评论
回答(1 个)
Riccardo Spica
2022-7-13
Hi Petra,
for your first question, you could exploit the sprintf function.
As an example,
sprintf('\x3B8')
will print a \theta. You can find the unicode string of a specific symbol by using Windows Character Map.
Riccardo
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Labels and Annotations 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!