From: Brion Vibber Date: Tue, 31 Jan 2006 01:13:04 +0000 (+0000) Subject: * (bug 4795) correction to texvc color patches X-Git-Tag: 1.6.0~394 X-Git-Url: https://git.heureux-cyclage.org/?a=commitdiff_plain;h=084497b71430173615040995d58751d57abcaf70;p=lhc%2Fweb%2Fwiklou.git * (bug 4795) correction to texvc color patches --- diff --git a/math/texutil.ml b/math/texutil.ml index 94cb191f03..67cb1a81dd 100644 --- a/math/texutil.ml +++ b/math/texutil.ml @@ -51,7 +51,7 @@ let get_encoding = function let get_preface () = "\\nonstopmode\n\\documentclass[12pt]{article}\n" ^ (if !modules_nonascii then get_encoding !modules_encoding else "") ^ (if !modules_ams then "\\usepackage{amsmath}\n\\usepackage{amsfonts}\n\\usepackage{amssymb}\n" else "") ^ - (if !modules_color then "\\usepackage[dvips]{color}\n" else "") ^ + (if !modules_color then "\\usepackage[dvips,usenames]{color}\n" else "") ^ "\\pagestyle{empty}\n\\begin{document}\n$$\n" let get_footer () = "\n$$\n\\end{document}\n"