From 8429afbfcc783410ac808fd9b8533094f0e2750c Mon Sep 17 00:00:00 2001 From: "William J. Bowman" Date: Tue, 14 Apr 2015 19:14:50 -0400 Subject: [PATCH] Fixed latex output --- oll.rkt | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/oll.rkt b/oll.rkt index d7ad937..711bee9 100644 --- a/oll.rkt +++ b/oll.rkt @@ -53,14 +53,14 @@ (when (attribute latex-file) (with-output-to-file (syntax->datum #'latex-file) (thunk - (format "\\fbox{$~a$}$~n$\\begin{mathpar}~n~a~n\end{mathpar}$$" - (syntax->datum #'(n types* ...)) - (string-trim - (for/fold ([str ""]) - ([rule (attribute rules.latex)]) - (format "~a~a\\and~n" str rule)) - "\\and" - #:left? #f))) + (printf (format "\\fbox{$~a$}$~n$\\begin{mathpar}~n~a~n\\end{mathpar}$$" + (syntax->datum #'(n types* ...)) + (string-trim + (for/fold ([str ""]) + ([rule (attribute rules.latex)]) + (format "~a~a\\and~n" str rule)) + "\\and" + #:left? #f)))) #:exists 'append)) #`(begin #,@(if (attribute coq-file) @@ -187,7 +187,7 @@ #:left? #f))])))) (define (generate-latex-bnf file-name vars clauses) (with-output-to-file file-name - (thunk (output-latex-bnf vars clauses)) + (thunk (printf (output-latex-bnf vars clauses))) #:exists 'append))) (module+ test (require "stdlib/sugar.rkt")