Placing plots into multiple page pdf document

90 ビュー (過去 30 日間)
Aleg
Aleg 2012 年 11 月 6 日
編集済み: Nikhil Sapre 2021 年 11 月 10 日
G'day,
I'm a bit stuck at a simple question: how can I create a single pdf file with multiple plots and pages? Multiple page is what I need. I could not find a solution to this simple task in the Internet.
Thanks
  3 件のコメント
ahmed
ahmed 2013 年 9 月 27 日
Same here ?
david Miller
david Miller 2019 年 5 月 14 日
Also have this question!

サインインしてコメントする。

採用された回答

Jonathan Epperl
Jonathan Epperl 2012 年 11 月 8 日
I don't think that Matlab can create multi-page pdfs for you, you'll have to do that yourself. pdfsam http://www.pdfsam.org is free and does just that.
If you want to do it only occasionally, then you can use the Matlab figure window to export to pdf, and the pdfsam GUI to merge them into a single pdf.
If you want to do it in an automated way from the commandline, then you can use Matlab's print command or one of the many much better functions from the FEX (e.g. http://www.mathworks.com/matlabcentral/fileexchange/23629-exportfig) and then pdfsam's console interface to merge them. You can call the console interface from the Matlab command line either by
!command
or
system('command')
As a third option, you could generate and compile a latex file from the Matlab command line, that's probably what I would do, but it depends on what you're comfortable with.
Btw, this is all assuming you're on Windows, if you're on a Mac, then preview.app can do the merging, you don't need pdfsam. For Linux, I'm sure, there is something similar.
  2 件のコメント
Jonathan Epperl
Jonathan Epperl 2012 年 11 月 8 日
Look what I just found in the documentation of export_fig:
-append - option indicating that if the file (pdfs only) already
exists, the figure is to be appended as a new page, instead
of being overwritten (default).
So now this offers you the 4th and probably easiest option!
Aleg
Aleg 2012 年 11 月 13 日
Hi Jonathan,
Thanks a lot for the answer. It works. :)

サインインしてコメントする。

その他の回答 (3 件)

Oliver Woodford
Oliver Woodford 2012 年 11 月 23 日
The append_pdfs function can concatenate separate pdf files into a single document in MATLAB.

jwiix
jwiix 2016 年 3 月 30 日
I had the same question. the best alternative I came up with programmatically is to use postscript, this allows you to use the append option within the print command:
print(fig_handle, '-dpsc', '-append', 'D:\output_dir\output_file.ps')
if you really require a pdf then you can utilise ps2pdf.com or equivalent to convert
  1 件のコメント
Ramachandra Rao
Ramachandra Rao 2016 年 5 月 13 日
very useful.. thankyou

サインインしてコメントする。


Nikhil Sapre
Nikhil Sapre 2021 年 11 月 10 日
編集済み: Nikhil Sapre 2021 年 11 月 10 日
Release 2021b now supports exporting to a multipage pdf using the exportgraphics function

カテゴリ

Help Center および File ExchangeGet Started with MATLAB についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by