Passa ai contenuti principali

Linux: Unire + documenti PDF

Ecco un semplice tool linux per effettuare il merge di documenti pdf:

pdftk

Per installarlo in una distribuzione ubuntu:

sudo apt-get install pdftk

E questo e' il sito ufficiale del tool:

http://www.pdflabs.com/tools/pdftk-the-pdf-toolkit/

Commenti

Post popolari in questo blog

Excel 2007: Histograms with different textures

Select the series in the histogram Open Visual Basic terminal by typing ALT + F11 Open the Visual Basic editor by typing CTRL + G In the Immediate Window, type the following and press enter: selection.fill.patterned (4) I would like to thank Diego M. Oppenheimer who wrote this wonderful guide .

How to embed fonts into a pdf file

IEEE requires that your PDF files embed all fonts. Earlier, I told you how to get pdflatex LaTeX to embed all its fonts, but what if you are including figures that have hanging fonts and you are getting desperate? Luke Fletcher gives us the solution. 1. convert to ps: pdftops ICRA05.pdf 2. convert back to pdf using prepress settings: ps2pdf14 -dPDFSETTINGS=/prepress ICRA05.ps 3. check new ICRA05.pdf for horrendous formatting errors due to double conversion. source from http://www.daniel-lemire.com/blog/archives/2006/08/18/embedding-fonts-for-ieee/