proper fix for the latex problem (blockquote was used unnecessarily)

svn: r11936

original commit: 0d6a9d73dc4616d5f2b321abf06102cf67c3e609
This commit is contained in:
Eli Barzilay 2008-10-05 02:23:21 +00:00
parent 420041b903
commit 2e8e8fb730

View File

@ -304,9 +304,7 @@
null)
(define/override (render-blockquote t part ri)
(let* ([kind (or (blockquote-style t) "quote")]
;; FIXME temporary hack to avoid a \begin{blockquote}
[kind (if (eq? 'blockquote kind) "quote" kind)])
(let ([kind (or (blockquote-style t) "quote")])
(printf "\n\n\\begin{~a}\n" kind)
(parameterize ([current-table-mode (list "blockquote" t)])
(for ([e (blockquote-paragraphs t)]) (render-block e part ri #f)))