1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812
|
(************************************************************************)
(* v * The Coq Proof Assistant / The Coq Development Team *)
(* <O___,, * CNRS-Ecole Polytechnique-INRIA Futurs-Universite Paris Sud *)
(* \VV/ **************************************************************)
(* // * This file is distributed under the terms of the *)
(* * GNU Lesser General Public License Version 2.1 *)
(************************************************************************)
(*i $Id: output.ml,v 1.7.2.1 2004/07/16 19:31:47 herbelin Exp $ i*)
open Index
(*s Target language *)
type target_language = LaTeX | HTML | TeXmacs
let target_language = ref HTML
(*s Low level output *)
let out_channel = ref stdout
let output_is_file = ref false
let output_dir = ref ""
let set_out_file f =
let f = if !output_dir <> "" then Filename.concat !output_dir f else f in
out_channel := open_out f;
output_is_file := true
let close () =
if !output_is_file then close_out !out_channel
let output_char c = Pervasives.output_char !out_channel c
let output_string s = Pervasives.output_string !out_channel s
let printf s = Printf.fprintf !out_channel s
let sprintf = Printf.sprintf
let dump_file f =
let ch = open_in f in
try
while true do
Pervasives.output_char !out_channel (input_char ch)
done
with End_of_file -> close_in ch
(*s Options *)
let header_trailer = ref true
let quiet = ref false
let light = ref false
let short = ref false
let index = ref true
let multi_index = ref false
let toc = ref false
let page_title = ref ""
let title = ref ""
let externals = ref true
let coqlib = ref "http://coq.inria.fr/library/"
let raw_comments = ref false
let charset = ref ""
let inputenc = ref ""
let latin1 = ref false
let utf8 = ref false
let set_latin1 () =
charset := "iso-8859-1";
inputenc := "latin1";
latin1 := true
let set_utf8 () =
charset := "utf-8";
inputenc := "utf8";
utf8 := true
(*s Coq keywords *)
let build_table l =
let h = Hashtbl.create 101 in
List.iter (fun key ->Hashtbl.add h key ()) l;
function s -> try Hashtbl.find h s; true with Not_found -> false
let is_keyword =
build_table
[ "Add"; "AddPath"; "Axiom"; "Chapter"; "CoFixpoint";
"CoInductive"; "Defined"; "Definition";
"End"; "Export"; "Fact"; "Fix"; "Fixpoint"; "Global"; "Grammar"; "Hint";
"Hypothesis"; "Hypotheses";
"Immediate"; "Implicit"; "Import"; "Inductive";
"Infix"; "Lemma"; "Let"; "Load"; "Local"; "Ltac";
"Module"; "Module Type"; "Declare Module";
"Mutual"; "Parameter"; "Parameters"; "Print"; "Proof"; "Qed";
"Record"; "Recursive"; "Remark"; "Require"; "Save"; "Scheme";
"Section"; "Show"; "Syntactic"; "Syntax"; "Tactic"; "Theorem";
"Unset"; "Variable"; "Variables";
"Notation";
(*i (* correctness *)
"array"; "assert"; "begin"; "do"; "done"; "else"; "end"; "if";
"in"; "invariant"; "let"; "of"; "ref"; "state"; "then"; "variant";
"while"; i*)
(*i (* coq terms *)
"with"; "Case"; "Cases"; "Prop"; "Set"; "Type"; i*)
]
(*s Current Coq module *)
let current_module = ref ""
let set_module m = current_module := m; page_title := m
(*s Common to both LaTeX and HTML *)
let item_level = ref 0
(*s Customized pretty-print *)
let token_pp = Hashtbl.create 97
let add_printing_token = Hashtbl.replace token_pp
let find_printing_token tok =
try Hashtbl.find token_pp tok with Not_found -> None, None
let remove_printing_token = Hashtbl.remove token_pp
(* predefined pretty-prints *)
let _ = List.iter
(fun (s,l) -> Hashtbl.add token_pp s (Some l, None))
[ "*" , "\\ensuremath{\\times}";
"->", "\\ensuremath{\\rightarrow}";
"->~", "\\ensuremath{\\rightarrow\\lnot}";
"->~~", "\\ensuremath{\\rightarrow\\lnot\\lnot}";
"<-", "\\ensuremath{\\leftarrow}";
"<->", "\\ensuremath{\\leftrightarrow}";
"=>", "\\ensuremath{\\Rightarrow}";
"<=", "\\ensuremath{\\le}";
">=", "\\ensuremath{\\ge}";
"<>", "\\ensuremath{\\not=}";
"~", "\\ensuremath{\\lnot}";
"/\\", "\\ensuremath{\\land}";
"\\/", "\\ensuremath{\\lor}";
"|-", "\\ensuremath{\\vdash}";
"forall", "\\ensuremath{\\forall}";
"exists", "\\ensuremath{\\exists}";
]
(*s Table of contents *)
type toc_entry =
| Toc_library of string
| Toc_section of int * (unit -> unit) * string
let (toc_q : toc_entry Queue.t) = Queue.create ()
let add_toc_entry e = Queue.add e toc_q
let new_label = let r = ref 0 in fun () -> incr r; "lab" ^ string_of_int !r
(*s LaTeX output *)
module Latex = struct
(*s Latex preamble *)
let (preamble : string Queue.t) = Queue.create ()
let push_in_preamble s = Queue.add s preamble
let header () =
if !header_trailer then begin
printf "\\documentclass[12pt]{article}\n";
if !inputenc != "" then printf "\\usepackage[%s]{inputenc}\n" !inputenc;
printf "\\usepackage[T1]{fontenc}\n";
printf "\\usepackage{fullpage}\n";
printf "\\usepackage{coqdoc}\n";
Queue.iter (fun s -> printf "%s\n" s) preamble;
printf "\\begin{document}\n"
end;
output_string
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n";
output_string
"%% This file has been automatically generated with the command\n";
output_string "%% ";
Array.iter (fun s -> printf "%s " s) Sys.argv;
printf "\n";
output_string
"%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%\n"
let trailer () =
if !header_trailer then begin
printf "\\end{document}\n"
end
let char c = match c with
| '\\' ->
printf "\\symbol{92}"
| '$' | '#' | '%' | '&' | '{' | '}' | '_' ->
output_char '\\'; output_char c
| '^' | '~' ->
output_char '\\'; output_char c; printf "{}"
| _ ->
output_char c
let latex_char = output_char
let latex_string = output_string
let html_char _ = ()
let html_string _ = ()
let raw_ident s =
for i = 0 to String.length s - 1 do char s.[i] done
let start_module () =
if not !short then begin
printf "\\coqdocmodule{";
raw_ident !current_module;
printf "}\n\n"
end
let start_latex_math () = output_char '$'
let stop_latex_math () = output_char '$'
let start_verbatim () = printf "\\begin{verbatim}"
let stop_verbatim () = printf "\\end{verbatim}\n"
let indentation n =
if n == 0 then
printf "\\noindent\n"
else
let space = 0.5 *. (float n) in
printf "\\coqdocindent{%2.2fem}\n" space
let with_latex_printing f tok =
try
(match Hashtbl.find token_pp tok with
| Some s, _ -> output_string s
| _ -> f tok)
with Not_found ->
f tok
let ident s _ =
if is_keyword s then begin
printf "\\coqdockw{"; raw_ident s; printf "}"
end else begin
printf "\\coqdocid{"; raw_ident s; printf "}"
end
let ident s l = with_latex_printing (fun s -> ident s l) s
let symbol = with_latex_printing raw_ident
let rec reach_item_level n =
if !item_level < n then begin
printf "\n\\begin{itemize}\n\\item "; incr item_level;
reach_item_level n
end else if !item_level > n then begin
printf "\n\\end{itemize}\n"; decr item_level;
reach_item_level n
end
let item n =
let old_level = !item_level in
reach_item_level n;
if n <= old_level then printf "\n\\item "
let stop_item () = reach_item_level 0
let start_doc () = printf "\n\n\n\\noindent\n"
let end_doc () = stop_item (); printf "\n\n\n"
let start_coq () = ()
let end_coq () = ()
let start_code () = end_doc (); start_coq ()
let end_code () = end_coq (); start_doc ()
let section_kind = function
| 1 -> "\\section{"
| 2 -> "\\subsection{"
| 3 -> "\\subsubsection{"
| 4 -> "\\paragraph{"
| _ -> assert false
let section lev f =
stop_item ();
output_string (section_kind lev);
f ();
printf "}\n\n"
let rule () =
printf "\\par\n\\noindent\\hrulefill\\par\n\\noindent{}"
let paragraph () = stop_item (); printf "\n\n\\medskip\n"
let line_break () = printf "\\coqdoceol\n"
let empty_line_of_code () = printf "\n\n\\medskip\n"
let start_inline_coq () = ()
let end_inline_coq () = ()
let make_index () = ()
let make_toc () = printf "\\tableofcontents\n"
end
(*s HTML output *)
module Html = struct
let header () =
if !header_trailer then begin
printf "<html xmlns=\"http://www.w3.org/1999/xhtml\">\n<head>\n";
if !charset != "" then
printf "<meta http-equiv=\"Content-Type\" content=\"text/html; charset=%s\">" !charset;
printf "<link rel=\"stylesheet\" href=\"style.css\" type=\"text/css\">";
printf "<title>%s</title>\n</head>\n\n" !page_title;
printf "<body>\n\n"
end
let self = "http://www.lri.fr/~filliatr/coqdoc/"
let trailer () =
if !index && !current_module <> "Index" then
printf "<hr/><a href=\"index.html\">Index</a>";
if !header_trailer then begin
printf "<hr/><font size=\"-1\">This page has been generated by ";
printf "<a href=\"%s\">coqdoc</a></font>\n" self;
printf "</body>\n</html>"
end
let start_module () =
if not !short then begin
(* add_toc_entry (Toc_library !current_module); *)
printf "<h1>Library %s</h1>\n\n" !current_module
end
let indentation n = for i = 1 to n do printf " " done
let line_break () = printf "<br/>\n"
let empty_line_of_code () = printf "\n<br/>\n"
let char = function
| '<' -> printf "<"
| '>' -> printf ">"
| '&' -> printf "&"
| c -> output_char c
let raw_ident s = for i = 0 to String.length s - 1 do char s.[i] done
let latex_char _ = ()
let latex_string _ = ()
let html_char = output_char
let html_string = output_string
let start_latex_math () = ()
let stop_latex_math () = ()
let start_verbatim () = printf "<pre>"
let stop_verbatim () = printf "</pre>\n"
let module_ref m s =
printf "<a href=\"%s.html\">" m; raw_ident s; printf "</a>"
(*i
match find_module m with
| Local ->
printf "<a href=\"%s.html\">" m; raw_ident s; printf "</a>"
| Coqlib when !externals ->
let m = Filename.concat !coqlib m in
printf "<a href=\"%s.html\">" m; raw_ident s; printf "</a>"
| Coqlib | Unknown ->
raw_ident s
i*)
let ident_ref m s = match find_module m with
| Local ->
printf "<a href=\"%s.html#%s\">" m s; raw_ident s; printf "</a>"
| Coqlib when !externals ->
let m = Filename.concat !coqlib m in
printf "<a href=\"%s.html#%s\">" m s; raw_ident s; printf "</a>"
| Coqlib | Unknown ->
raw_ident s
let ident s loc =
if is_keyword s then begin
printf "<code class=\"keyword\">";
raw_ident s;
printf "</code>"
end else
try
(match Index.find !current_module loc with
| Def _ ->
printf "<a name=\"%s\"></a>" s; raw_ident s
| Mod (m,s') when s = s' ->
module_ref m s
| Ref (m,s') when s = s' ->
ident_ref m s
| Mod _ | Ref _ ->
raw_ident s)
with Not_found ->
raw_ident s
let with_html_printing f tok =
try
(match Hashtbl.find token_pp tok with
| _, Some s -> output_string s
| _ -> f tok)
with Not_found ->
f tok
let ident s l = with_html_printing (fun s -> ident s l) s
let symbol = with_html_printing raw_ident
let rec reach_item_level n =
if !item_level < n then begin
printf "\n<ul>\n<li>"; incr item_level;
reach_item_level n
end else if !item_level > n then begin
printf "\n</li>\n</ul>\n"; decr item_level;
reach_item_level n
end
let item n =
let old_level = !item_level in
reach_item_level n;
if n <= old_level then printf "\n</li>\n<li>"
let stop_item () = reach_item_level 0
let start_coq () = if not !raw_comments then printf "<code>\n"
let end_coq () = if not !raw_comments then printf "</code>\n"
let start_doc () =
if not !raw_comments then
printf "\n<table width=\"100%%\"><tr class=\"doc\"><td>\n"
let end_doc () =
stop_item ();
if not !raw_comments then printf "\n</td></tr></table>\n"
let start_code () = end_doc (); start_coq ()
let end_code () = end_coq (); start_doc ()
let start_inline_coq () = printf "<code>"
let end_inline_coq () = printf "</code>"
let paragraph () = stop_item (); printf "\n<br/><br/>\n"
let section lev f =
let lab = new_label () in
let r = sprintf "%s.html#%s" !current_module lab in
add_toc_entry (Toc_section (lev, f, r));
stop_item ();
printf "<a name=\"%s\"></a><h%d>" lab lev;
f ();
printf "</h%d>\n" lev
let rule () = printf "<hr/>\n"
let entry_type = function
| Library -> "library"
| Module -> "module"
| Definition -> "definition"
| Inductive -> "inductive"
| Constructor -> "constructor"
| Lemma -> "lemma"
| Variable -> "variable"
| Axiom -> "axiom"
| TacticDefinition -> "tactic definition"
(* make a HTML index from a list of triples (name,text,link) *)
let index_ref i c =
let idxc = sprintf "%s_%c" i.idx_name c in
if !multi_index then "index_" ^ idxc ^ ".html" else "index.html#" ^ idxc
let letter_index category idx (c,l) =
if l <> [] then begin
let cat = if category && idx <> "global" then "(" ^ idx ^ ")" else "" in
printf "<a name=\"%s_%c\"></a><h2>%c %s</h2>\n" idx c c cat;
List.iter
(fun (id,(text,link)) ->
printf "<a href=\"%s\">%s</a> %s<br/>\n" link id text) l;
printf "<br/><br/>"
end
let all_letters i = List.iter (letter_index false i.idx_name) i.idx_entries
let separate_index navig i =
let idx = i.idx_name in
let one_letter ((c,l) as cl) =
set_out_file (sprintf "index_%s_%c.html" idx c);
header ();
navig ();
printf "<hr/>";
letter_index true idx cl;
if List.length l > 30 then begin printf "<hr/>"; navig () end;
trailer ();
close ()
in
List.iter one_letter i.idx_entries
let format_global_index =
Index.map
(fun s (m,t) ->
if t = Library then
"[library]", m ^ ".html"
else
sprintf "[%s, in <a href=\"%s.html\">%s</a>]" (entry_type t) m m ,
sprintf "%s.html#%s" m s)
let format_bytype_index = function
| Library, idx ->
Index.map (fun id m -> "", m ^ ".html") idx
| (t,idx) ->
Index.map
(fun s m ->
let text = sprintf "[in <a href=\"%s.html\">%s</a>]" m m in
(text, sprintf "%s.html#%s" m s)) idx
let navig_one_index i =
printf "<tr>\n<td>%s Index</td>\n" (String.capitalize i.idx_name);
List.iter
(fun (c,l) ->
if l <> [] then
printf "<td><a href=\"%s\">%c</a></td>\n" (index_ref i c) c
else
printf "<td>%c</td>\n" c)
i.idx_entries;
let n = i.idx_size in
printf "<td>(%d %s)</td>\n" n (if n > 1 then "entries" else "entry");
printf "</tr>\n"
let navig_index il =
printf "<table>\n";
List.iter navig_one_index il;
printf "</table>\n"
let make_index () =
if !index then begin
let idxl =
let glob,bt = Index.all_entries () in
format_global_index glob ::
List.map format_bytype_index bt
in
let navig () = navig_index idxl in
set_out_file "index.html";
current_module := "Index";
page_title := (if !title <> "" then !title else "Index");
header ();
if !title <> "" then printf "<h1>%s</h1>\n" !title;
navig ();
if !multi_index then begin
trailer ();
close ();
List.iter (separate_index navig) idxl;
end else begin
let one_index i =
if i.idx_size > 0 then begin
printf "<hr/>\n<h1>%s Index</h1>\n" (String.capitalize i.idx_name);
all_letters i
end
in
List.iter one_index idxl;
printf "<hr/>";
navig ();
trailer ();
close ()
end;
end
let make_toc () =
set_out_file "toc.html";
page_title := (if !title <> "" then !title else "Table of contents");
header ();
if !title <> "" then printf "<h1>%s</h1>\n" !title;
let make_toc_entry = function
| Toc_library m ->
stop_item ();
printf "<a href=\"%s.html\"><h2>Library %s</h2></a>\n" m m
| Toc_section (n, f, r) ->
item n;
printf "<a href=\"%s\">" r; f (); printf "</a>\n"
in
Queue.iter make_toc_entry toc_q;
stop_item ();
if !index then printf "<a href=\"index.html\"><h2>Index</h2></a>";
trailer ();
close ()
end
(*s TeXmacs-aware output *)
module TeXmacs = struct
(*s Latex preamble *)
let in_doc = ref false
let (preamble : string Queue.t) =
in_doc := false; Queue.create ()
let push_in_preamble s = Queue.add s preamble
let header () =
output_string
"(*i This file has been automatically generated with the command \n";
output_string
" "; Array.iter (fun s -> printf "%s " s) Sys.argv; printf " *)\n"
let trailer () = ()
let char_true c = match c with
| '\\' -> printf "\\\\"
| '<' -> printf "\\<"
| '|' -> printf "\\|"
| '>' -> printf "\\>"
| _ -> output_char c
let char c = if !in_doc then char_true c else output_char c
let latex_char = char_true
let latex_string = String.iter latex_char
let html_char _ = ()
let html_string _ = ()
let raw_ident s =
for i = 0 to String.length s - 1 do char s.[i] done
let start_module () = ()
let start_latex_math () = printf "<with|mode|math|"
let stop_latex_math () = output_char '>'
let start_verbatim () = in_doc := true; printf "<\\verbatim>"
let stop_verbatim () = in_doc := false; printf "</verbatim>"
let indentation n = ()
let ident_true s =
if is_keyword s then begin
printf "<kw|"; raw_ident s; printf ">"
end else begin
raw_ident s
end
let ident s _ = if !in_doc then ident_true s else raw_ident s
let symbol_true s =
let ensuremath x = printf "<with|mode|math|\\<%s\\>>" x in
match s with
| "*" -> ensuremath "times"
| "->" -> ensuremath "rightarrow"
| "<-" -> ensuremath "leftarrow"
| "<->" ->ensuremath "leftrightarrow"
| "=>" -> ensuremath "Rightarrow"
| "<=" -> ensuremath "le"
| ">=" -> ensuremath "ge"
| "<>" -> ensuremath "noteq"
| "~" -> ensuremath "lnot"
| "/\\" -> ensuremath "land"
| "\\/" -> ensuremath "lor"
| "|-" -> ensuremath "vdash"
| s -> raw_ident s
let symbol s = if !in_doc then symbol_true s else raw_ident s
let rec reach_item_level n =
if !item_level < n then begin
printf "\n<\\itemize>\n<item>"; incr item_level;
reach_item_level n
end else if !item_level > n then begin
printf "\n</itemize>"; decr item_level;
reach_item_level n
end
let item n =
let old_level = !item_level in
reach_item_level n;
if n <= old_level then printf "\n\n<item>"
let stop_item () = reach_item_level 0
let start_doc () = in_doc := true; printf "(** texmacs: "
let end_doc () = stop_item (); in_doc := false; printf " *)"
let start_coq () = ()
let end_coq () = ()
let start_code () = in_doc := true; printf "<\\code>\n"
let end_code () = in_doc := false; printf "\n</code>"
let section_kind = function
| 1 -> "section"
| 2 -> "subsection"
| 3 -> "subsubsection"
| 4 -> "paragraph"
| _ -> assert false
let section lev f =
stop_item ();
printf "<"; output_string (section_kind lev); printf "|";
f (); printf ">\n\n"
let rule () =
printf "\n<hrule>\n"
let paragraph () = stop_item (); printf "\n\n"
let line_break_true () = printf "<format|line break>"
let line_break () = printf "\n"
let empty_line_of_code () = printf "\n"
let start_inline_coq () = printf "<verbatim|["
let end_inline_coq () = printf "]>"
let make_index () = ()
let make_toc () = ()
end
(*s Generic output *)
let select f1 f2 f3 x =
match !target_language with LaTeX -> f1 x | HTML -> f2 x | TeXmacs -> f3 x
let push_in_preamble = Latex.push_in_preamble
let header = select Latex.header Html.header TeXmacs.header
let trailer = select Latex.trailer Html.trailer TeXmacs.trailer
let start_module =
select Latex.start_module Html.start_module TeXmacs.start_module
let start_doc = select Latex.start_doc Html.start_doc TeXmacs.start_doc
let end_doc = select Latex.end_doc Html.end_doc TeXmacs.end_doc
let start_coq = select Latex.start_coq Html.start_coq TeXmacs.start_coq
let end_coq = select Latex.end_coq Html.end_coq TeXmacs.end_coq
let start_code = select Latex.start_code Html.start_code TeXmacs.start_code
let end_code = select Latex.end_code Html.end_code TeXmacs.end_code
let start_inline_coq =
select Latex.start_inline_coq Html.start_inline_coq TeXmacs.start_inline_coq
let end_inline_coq =
select Latex.end_inline_coq Html.end_inline_coq TeXmacs.end_inline_coq
let indentation = select Latex.indentation Html.indentation TeXmacs.indentation
let paragraph = select Latex.paragraph Html.paragraph TeXmacs.paragraph
let line_break = select Latex.line_break Html.line_break TeXmacs.line_break
let empty_line_of_code = select
Latex.empty_line_of_code Html.empty_line_of_code TeXmacs.empty_line_of_code
let section = select Latex.section Html.section TeXmacs.section
let item = select Latex.item Html.item TeXmacs.item
let stop_item = select Latex.stop_item Html.stop_item TeXmacs.stop_item
let rule = select Latex.rule Html.rule TeXmacs.rule
let char = select Latex.char Html.char TeXmacs.char
let ident = select Latex.ident Html.ident TeXmacs.ident
let symbol = select Latex.symbol Html.symbol TeXmacs.symbol
let latex_char = select Latex.latex_char Html.latex_char TeXmacs.latex_char
let latex_string =
select Latex.latex_string Html.latex_string TeXmacs.latex_string
let html_char = select Latex.html_char Html.html_char TeXmacs.html_char
let html_string =
select Latex.html_string Html.html_string TeXmacs.html_string
let start_latex_math =
select Latex.start_latex_math Html.start_latex_math TeXmacs.start_latex_math
let stop_latex_math =
select Latex.stop_latex_math Html.stop_latex_math TeXmacs.stop_latex_math
let start_verbatim =
select Latex.start_verbatim Html.start_verbatim TeXmacs.start_verbatim
let stop_verbatim =
select Latex.stop_verbatim Html.stop_verbatim TeXmacs.stop_verbatim
let verbatim_char =
select output_char Html.char TeXmacs.char
let hard_verbatim_char = output_char
let make_index = select Latex.make_index Html.make_index TeXmacs.make_index
let make_toc = select Latex.make_toc Html.make_toc TeXmacs.make_toc
|