Re: [racket-users] Scribble: para without indentation for LaTeX/PDF output

2015-05-07 Thread Matthew Flatt
(Sorry for the long delay!) I think that defining a paragraph style for Latex is the right answer to avoid indentation. In case you haven't yet done that, here's a hack: use `(elem #:style "noindent")` as the first element of of the paragraph. That works because it generates `\noindent` in the out

[racket-users] Scribble: para without indentation for LaTeX/PDF output

2015-04-23 Thread Alexey Cherkaev
Hi, I am trying to create something similar to LaTeX's \newtheorem command. Very simple implementation (still incomplete) for an "Exercise" block: #lang racket (require scribble/manual) (provide exercise) (define exercise-counter 0) (define (exercise cont) (set! exercise-counter (add1 exerc