bkyk8rc3zvpnsf5inmcqq4n3k98cv6hj-my-site-hyper-literate-git.test.suzanne.soy-0.0.1

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 2c4506437656ed89a6d2a73849185d6c7ce43175
parent 4e96e99344171a629e7723c080a85b44357cf762
Author: Matthew Flatt <mflatt@racket-lang.org>
Date:   Thu, 28 May 2015 16:22:17 -0600

scribble/jfp: work around a collision with mathabx

Diffstat:
Mscribble-lib/scribble/jfp/lang.rkt | 6++++--
1 file changed, 4 insertions(+), 2 deletions(-)

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