Re: [racket-dev] Blog volunteer

2010-06-15 Thread Eli Barzilay
On Jun 14, Eli Barzilay wrote: > > So in case anyone knows how to deal with these things and make it > work, it would be very nice. Even if you don't, maybe someone else > who didn't spend almost 24 straight hours fighting with it will have > a fresher look and working ideas how to make it work.

Re: [racket-dev] scribble tables with centered cells

2010-06-15 Thread Robby Findler
I think that's slideshow. Robby On Tue, Jun 15, 2010 at 10:24 AM, Stephen Chang wrote: > This seems to do the trick: > > (table 3 >        (list (t "Header1") (t "Header2") (t "Header3") >              (t "11") (t "17") (t "29")) >        cc-superimpose >        cc-superimpose >        gap-size

Re: [racket-dev] scribble tables with centered cells

2010-06-15 Thread Stephen Chang
This seems to do the trick: (table 3 (list (t "Header1") (t "Header2") (t "Header3") (t "11") (t "17") (t "29")) cc-superimpose cc-superimpose gap-size gap-size) On Tue, Jun 15, 2010 at 11:01 AM, Sam Tobin-Hochstadt wrote: > I'd like to produce,

Re: [racket-dev] scribble tables with centered cells

2010-06-15 Thread Stephen Chang
Oops nevermind. I misread scribble as slideshow. On Tue, Jun 15, 2010 at 11:24 AM, Stephen Chang wrote: > This seems to do the trick: > > (table 3 >(list (t "Header1") (t "Header2") (t "Header3") > (t "11") (t "17") (t "29")) >cc-superimpose > cc-superimpo

Re: [racket-dev] scribble tables with centered cells

2010-06-15 Thread Robby Findler
Matthew may have a better answer but I think that probably you should make a one-off latex macro (and HTML code). Robby On Tuesday, June 15, 2010, Sam Tobin-Hochstadt wrote: > I'd like to produce, with scribble, output similar to what this latex > produces: > > \begin{tabular}{|c|c|c|} > Header

[racket-dev] scribble tables with centered cells

2010-06-15 Thread Sam Tobin-Hochstadt
I'd like to produce, with scribble, output similar to what this latex produces: \begin{tabular}{|c|c|c|} Header1 & Header2 & Header3 11 & 17 & 29 \end{tabular} However, I can't seem to figure out how. First, how can I make the elements centered? There doesn't seem to be a way to control the gen