[racket] How to make slide align left in Slideshow
I dont think there's any way to specify the alignment of the entire
slide. You'd have to do each element separately.
For example, using
(para "Please align left")
as the title would align left and
(para #:align 'right "Please align left")
would align right.
If all your slides have the same structure, you could define a new slide macro.
On Fri, Sep 13, 2013 at 11:31 AM, ironson <ironson at 126.com> wrote:
> Hi all,
>
> I am writing for a presentation using Slideshow. I want to align picts left.
> But it aligns center. Below is my code
>
> #lang slideshow
>
> (slide
> #:title "Please align left"
> (t "Hello")
> (t "World"))
> Thanks!
>
> 2013-09-13
> ________________________________
> ironson
>
> ____________________
> Racket Users list:
> http://lists.racket-lang.org/users
>