how to print scripts in PDF on a mac os x?
12 ビュー (過去 30 日間)
古いコメントを表示
The MATAB print command does not allow me to use PDF. How can I print the scripts in PDF in MATLAB?
0 件のコメント
回答 (4 件)
Kaustubha Govind
2011 年 4 月 6 日
I don't know that this is possible directly from MATLAB, but since MATLAB scripts are basically text files, why not open them up in any other text reader or word processing software and print to PDF?
EDIT:
The PUBLISH command can be used to achieve this. Try:
publish('myfile.m','pdf')
Note that you need to suppress any statement output with a semicolon, if you do not want the output of the statement to be published.
0 件のコメント
Juan
2011 年 4 月 6 日
3 件のコメント
Walter Roberson
2011 年 4 月 6 日
When you paste or drag a selection from the Editor to another application, such as Microsoft Word, the pasted text maintains the syntax highlighting colors and font characteristics from the Editor. MATLAB software pastes the selection to the Clipboard in RTF format, which many Microsoft Windows and Macintosh applications support.
Andrew Newell
2011 年 4 月 6 日
@Walter, it's a pity you didn't post this as a separate answer. I'd like to vote for it!
参考
カテゴリ
Help Center および File Exchange で Environment and Settings についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!