scribble/jfp: work around a collision with mathabx

This commit is contained in:
Matthew Flatt 2015-05-28 16:22:17 -06:00
parent 4e96e99344
commit 2c45064376

View File

@ -35,8 +35,10 @@
(define ((post-process) doc) (define ((post-process) doc)
(add-defaults doc (add-defaults doc
(string->bytes/utf-8 (string->bytes/utf-8
(format "\\documentclass{jfp1}\n~a\\usepackage{times}\n\\usepackage{qcourier}\n" (format "\\documentclass{jfp1}\n~a\\usepackage{times}\n\\usepackage{qcourier}\n~a"
unicode-encoding-packages)) unicode-encoding-packages
;; Avoid a conflict with mathabx:
"\\let\\amalg\\relax\n"))
(scribble-file "jfp/style.tex") (scribble-file "jfp/style.tex")
(list cls-file) (list cls-file)
#f)) #f))