commit 09629fbcbaed50caf7994b2e734ebde7124d2256
parent adf509221989868d384122501924b8d1d6de862d
Author: Matthew Flatt <mflatt@racket-lang.org>
Date: Thu, 9 Apr 2009 11:43:27 +0000
add space before \\item when generating an index table
svn: r14474
original commit: ee8a4308b827b116b0ac4d09a4679f62d13e32f0
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/collects/scribble/latex-render.ss b/collects/scribble/latex-render.ss
@@ -316,7 +316,7 @@
(assoc 'valignment (table-style t)))])
(and p (cdr p))))])
(unless (null? flows)
- (when index? (printf "\\item "))
+ (when index? (printf "\n\\item "))
(unless (eq? 'cont (car flows))
(let ([cnt (let loop ([flows (cdr flows)][n 1])
(cond [(null? flows) n]