]> matita.cs.unibo.it Git - helm.git/blob - matita/components/binaries/matex/TeXOutput.ml
053c890bbde243977bee9140a7457eadf8ddf4bd
[helm.git] / matita / components / binaries / matex / TeXOutput.ml
1 (*
2     ||M||  This file is part of HELM, an Hypertextual, Electronic        
3     ||A||  Library of Mathematics, developed at the Computer Science     
4     ||T||  Department, University of Bologna, Italy.                     
5     ||I||                                                                
6     ||T||  HELM is free software; you can redistribute it and/or         
7     ||A||  modify it under the terms of the GNU General Public License   
8     \   /  version 2 or (at your option) any later version.      
9      \ /   This software is distributed as is, NO WARRANTY.     
10       V_______________________________________________________________ *)
11
12 module L = List
13 module P = Printf
14 module S = String
15
16 module T = TeX
17
18 (* internal functions *******************************************************)
19
20 let special = "\\{}$&#^_~%" (* LaTeX reserves these characters *)
21
22 let quote c =
23    if S.contains special c then '.' else c
24
25 let rec out_item och = function
26    | T.Free s  -> P.fprintf och "%s" (S.map quote s)
27    | T.Macro s -> P.fprintf och "\\%s" s
28    | T.Group t -> P.fprintf och "%%\n{%a}" out_text t
29
30 (* interface functions ******************************************************)
31
32 and out_text och t = 
33    L.iter (out_item och) t