Re: Use cropbox
Otfried Cheong via Ipe-discuss <ipe-discuss-rGrgPyRx506NN8uzcEdRPYRWq/[email protected]> Tue, 30 Apr 2019 10:32:11 -0400
| Newsgroups | gmane.comp.graphics.ipe.general |
|---|---|
| Message-ID | <[email protected]> |
On Tue, Apr 30, 2019, at 16:18, Tim Hutt via Ipe-discuss wrote: > In previous versions of IPE there was a checkbox in document > preferences - "Use Cropbox" which was useful for presentations, so > every page isn't cropped. It seems to have disappeared! Is there any > way to do this now? Welcome back to Ipe - you seem to have been away for a while :-) This now done with the "crop" attribute in the "layout" element in the presentation stylesheet. For instance, the "presentation.isy" style sheet that comes with Ipe contains this definition: <layout paper="800 600" origin="32 0" frame="736 528" skip="32" crop="no"/> If you just want to change your current layout so it isn't cropped, just add crop="no" to the layout definition. Here is a small style sheet that I use for A4 paper: <ipestyle name="nocrop"> <layout paper="595 842" origin="0 0" frame="595 842" crop="no" /> </ipestyle> Cheers, Otfried