Re: Save PDF file automatically when .ipe has changed?
Tim Hutt <[email protected]>
| Newsgroups | gmane.comp.graphics.ipe.general |
|---|---|
| Message-ID | <CAKuVd4BDNF-vFu42-MTOGw3RcV2BOs0Rae=qKR-SWkyYoMGcZA@mail.gmail.com> |
On 25 July 2011 09:38, elwood151 <elwood151-S0/[email protected]> wrote: > > For easier text editing it seems favorable to save ipe documents in the xml > format *.ipe. > However, then I always have to update the PDF file (with the same name) > which shall be included in my LaTeX document. > > Is there a trick to create or update the PDF (same name and same path as > .ipe) automatically when the .ipe is saved? Set prefs.auto_export_xml_to_pdf in prefs.lua: -- Auto-exporting when document is being saved -- if auto_export_only_if_exists is true, then the file will only -- be auto-exported if a file with the target name already exists prefs.auto_export_xml_to_eps = false prefs.auto_export_xml_to_pdf = true prefs.auto_export_eps_to_pdf = false prefs.auto_export_pdf_to_eps = false prefs.auto_export_only_if_exists = true