255
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
1 |
|
256
|
2 |
structure OutputTutorial =
|
255
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
3 |
struct
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
4 |
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
5 |
(* rebuilding the output function from ThyOutput in order to *)
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
6 |
(* enable the options [gray, linenos, index] *)
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
7 |
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
8 |
val gray = ref false
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
9 |
val linenos = ref false
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
10 |
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
11 |
fun output txt =
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
12 |
let
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
13 |
val prts = map Pretty.str txt
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
14 |
in
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
15 |
prts
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
16 |
|> (if ! ThyOutput.quotes then map Pretty.quote else I)
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
17 |
|> (if ! ThyOutput.display then
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
18 |
map (Output.output o Pretty.string_of o Pretty.indent (! ThyOutput.indent))
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
19 |
#> space_implode "\\isasep\\isanewline%\n"
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
20 |
#> (if ! linenos then (enclose "\\begin{linenos}%\n" "%\n\\end{linenos}") else I)
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
21 |
#> (if ! gray then (enclose "\\begin{graybox}%\n" "%\n\\end{graybox}") else I)
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
22 |
#> enclose "\\begin{isabelle}%\n" "%\n\\end{isabelle}"
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
23 |
else
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
24 |
map (Output.output o (if ! ThyOutput.break then Pretty.string_of else Pretty.str_of))
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
25 |
#> space_implode "\\isasep\\isanewline%\n"
|
256
|
26 |
#> enclose "\\isa{" "}")
|
255
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
27 |
end
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
28 |
|
256
|
29 |
datatype qstring =
|
|
30 |
Plain of string
|
|
31 |
| Code of string
|
|
32 |
|
|
33 |
datatype entry =
|
|
34 |
No_Entry
|
|
35 |
| Default
|
|
36 |
| Explicit of string
|
|
37 |
|
|
38 |
val index = ref No_Entry
|
|
39 |
|
|
40 |
fun translate f = Symbol.explode #> map f #> implode;
|
|
41 |
|
|
42 |
val clean_string = translate
|
|
43 |
(fn "_" => "\\_"
|
|
44 |
| "#" => "\\#"
|
|
45 |
| "<" => "\\isacharless"
|
|
46 |
| ">" => "\\isachargreater"
|
|
47 |
| "{" => "\\{"
|
|
48 |
| "|" => "\\isacharbar"
|
|
49 |
| "}" => "\\}"
|
|
50 |
| "$" => "\\isachardollar"
|
|
51 |
| "!" => "\\isacharbang"
|
|
52 |
| "\\<dash>" => "-"
|
|
53 |
| c => c);
|
|
54 |
|
|
55 |
fun get_word str =
|
|
56 |
let
|
|
57 |
fun only_letters [] = true
|
|
58 |
| only_letters (x::xs) =
|
|
59 |
if (Symbol.is_ascii_blank x) then false else only_letters xs
|
|
60 |
in
|
|
61 |
if (only_letters (Symbol.explode str)) then (clean_string str)
|
|
62 |
else error ("Underspecified index entry only for single words allowed! Error with " ^ quote str)
|
|
63 |
end
|
|
64 |
|
|
65 |
fun get_qstring (Plain s) = get_word s
|
|
66 |
| get_qstring (Code s) = let val w = get_word s in (w ^ "@{\\tt\\slshape{}" ^ w ^ "}") end
|
|
67 |
|
|
68 |
fun is_empty_qstr (Plain "") = true
|
|
69 |
| is_empty_qstr (Code "") = true
|
|
70 |
| is_empty_qstr _ = false
|
|
71 |
|
|
72 |
fun get_index_info {main = m, minor = n} =
|
|
73 |
(if n = ""
|
|
74 |
then "\\index{" ^ (get_qstring m) ^ "}"
|
|
75 |
else "\\indexdef{" ^ (get_qstring m) ^ "}{" ^ n ^ "}")
|
|
76 |
|
|
77 |
fun index_entry entry index_info =
|
|
78 |
case entry of
|
|
79 |
No_Entry => I
|
|
80 |
| Explicit s => prefix s
|
|
81 |
| Default => prefix (get_index_info index_info)
|
|
82 |
|
|
83 |
fun output_indexed txt index_info =
|
|
84 |
txt |> output
|
|
85 |
|> index_entry (!index) index_info
|
255
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
86 |
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
87 |
fun boolean "" = true
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
88 |
| boolean "true" = true
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
89 |
| boolean "false" = false
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
90 |
| boolean s = error ("Bad boolean value: " ^ quote s);
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
91 |
|
256
|
92 |
fun explicit "" = Default
|
|
93 |
| explicit s = Explicit s
|
|
94 |
|
255
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
95 |
val _ = ThyOutput.add_options
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
96 |
[("gray", Library.setmp gray o boolean),
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
97 |
("linenos", Library.setmp linenos o boolean),
|
256
|
98 |
("index", Library.setmp index o explicit)]
|
255
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
99 |
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
100 |
|
ef1da1abee46
added infrastructure for index; antiquotations have now the options [index] and [indexc]
Christian Urban <urbanc@in.tum.de>
parents:
diff
changeset
|
101 |
end |