Placing plots into multiple page pdf document

109 visualizaciones (últimos 30 días)
Aleg
Aleg el 6 de Nov. de 2012
Editada: Nikhil Sapre el 10 de Nov. de 2021
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 comentarios
ahmed
ahmed el 27 de Sept. de 2013
Same here ?
david Miller
david Miller el 14 de Mayo de 2019
Also have this question!

Iniciar sesión para comentar.

Respuesta aceptada

Jonathan Epperl
Jonathan Epperl el 8 de Nov. de 2012
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 comentarios
Jonathan Epperl
Jonathan Epperl el 8 de Nov. de 2012
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 el 13 de Nov. de 2012
Hi Jonathan,
Thanks a lot for the answer. It works. :)

Iniciar sesión para comentar.

Más respuestas (3)

Oliver Woodford
Oliver Woodford el 23 de Nov. de 2012
The append_pdfs function can concatenate separate pdf files into a single document in MATLAB.

jwiix
jwiix el 30 de Mzo. de 2016
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

Nikhil Sapre
Nikhil Sapre el 10 de Nov. de 2021
Editada: Nikhil Sapre el 10 de Nov. de 2021
Release 2021b now supports exporting to a multipage pdf using the exportgraphics function

Categorías

Más información sobre Get Started with MATLAB en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by