LPUB: Spacing steps on a single page - Printable Version +- LDraw.org Discussion Forums (https://forums.ldraw.org) +-- Forum: LDraw Programs (https://forums.ldraw.org/forum-7.html) +--- Forum: LDraw File Processing and Conversion (https://forums.ldraw.org/forum-22.html) +--- Thread: LPUB: Spacing steps on a single page (/thread-17006.html) |
LPUB: Spacing steps on a single page - Jetro de Château - 2015-08-06 I'm trying to figure out how to better space multiple steps on a single page. By default LPUB will centre the steps on the page, but I would like them to be more evenly spaced. Where should I look for a local value that will help me to increase distance beteen steps? Or is there a better way to do this? Re: LPUB: Spacing steps on a single page - Gerald Lasser - 2015-08-06 The easiest way to do so is the command !LPUB RESERVE [percentage value] It will increase the distance between two steps by the value specified. i.e. if the value is "0.1" 10% of the page width/height will be added. The command is unfortunately only effective in the direction in which the steps are aligned, e.g. VERTICAL or HORIZONTAL. If you have like 4 steps in the quadrants like this: 1 3 2 4 The commands would be: (... stands for parts) Code: ... If you want to adjust the horizontal spacing you need to add margin to the divider (i.e. the second last values adds horizontal spacing) 0 !LPUB MULTI_STEP SEPARATOR GLOBAL 0.03125 black 0.5 0 Best thing is to play around and give it a try! Re: LPUB: Spacing steps on a single page - Jetro de Château - 2015-08-07 Thank you very much Gerald for your very complete answer. That's exactly what I'm looking for. LPUB is a great tool, but finding out how to do certain things can be really complicated. How did you learn about this command? Is there some webpage with documentation that I haven't been able to find? Re: LPUB: Spacing steps on a single page - Gerald Lasser - 2015-08-13 Sorry for my late reply, I cannot exactly recall where I got it from but it is one of the lesser known Metacommands. Jaco's site, Workong with LPUB lists some as well as J. C. Tchang site I like the work by Trevor that is going on right now to improve LPUB |