From ee8a4308b827b116b0ac4d09a4679f62d13e32f0 Mon Sep 17 00:00:00 2001 From: Matthew Flatt Date: Thu, 9 Apr 2009 11:43:27 +0000 Subject: [PATCH] add space before \\item when generating an index table svn: r14474 --- collects/scribble/latex-render.ss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/collects/scribble/latex-render.ss b/collects/scribble/latex-render.ss index 00548507fb..8f0a8c7428 100644 --- 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]