Hi, Brunetto
On 24 November 2012 15:46, brunetto <
brunett...@gmail.com> wrote:
>> I obtain no error but no pdfs!
>> What can I do? Any suggestions?
sozi2pdf runs in two steps:
1. it generates individual PDF files for all frames of your presentation
2. it merges all these files into a single PDF document.
The first step uses sozi2pdf.js with PhantomJS. Its output goes to a
temporary folder in /tmp.
The second step uses pdfjoin (provided in package texlive-extra-utils).
You can check that temporary files are generated correctly in /tmp.
The name of the subfolder for Sozi frames is chosen randomly and is
different each time.
The temporary folder is deleted when sozi2pdf completes.
You can prevent this by commenting the last line of sozi2pdf.py:
# shutil.rmtree(tmp_dir, ignore_errors=True)
If you get correct PDF files for all your frames, then you can try to
run pdfjoin manually and see the result.
In the temporary folder :
pdfjoin --output test.pdf `ls [0-9]*.pdf`
Guillaume