diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/guile/skribilo/package/acmproc.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/guile/skribilo/package/acmproc.scm b/src/guile/skribilo/package/acmproc.scm index 8facf3e..9929c85 100644 --- a/src/guile/skribilo/package/acmproc.scm +++ b/src/guile/skribilo/package/acmproc.scm @@ -52,12 +52,12 @@ (markup-writer '&latex-author le :before (lambda (n e) (let ((body (markup-body n))) - (format #f "\\numberofauthors{~a}\n\\author{\n" + (format #t "\\numberofauthors{~a}\n\\author{\n" (if (pair? body) (length body) 1)))) :action (lambda (n e) (let ((body (markup-body n))) (for-each (lambda (a) - (display "\\alignauthor\n") + (display "\\alignauthor\n") (output a e)) (if (pair? body) body (list body))))) :after "}\n") |