author | wenzelm |
Mon, 08 Jan 2018 15:51:29 +0100 | |
changeset 67377 | 143665524d8e |
parent 67375 | c0c36348a4fb |
child 67378 | 2ebd0ef3a6b6 |
permissions | -rw-r--r-- |
22124 | 1 |
(* Title: Pure/Thy/thy_output.ML |
2 |
Author: Markus Wenzel, TU Muenchen |
|
3 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
4 |
Theory document output with antiquotations. |
22124 | 5 |
*) |
6 |
||
7 |
signature THY_OUTPUT = |
|
8 |
sig |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
9 |
val display: bool Config.T |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
10 |
val quotes: bool Config.T |
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
11 |
val margin: int Config.T |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
12 |
val indent: int Config.T |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
13 |
val source: bool Config.T |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
14 |
val break: bool Config.T |
52042 | 15 |
val modes: string Config.T |
38766
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
16 |
val add_wrapper: ((unit -> string) -> unit -> string) -> Proof.context -> Proof.context |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
17 |
val add_option: binding -> (string -> Proof.context -> Proof.context) -> theory -> theory |
55743 | 18 |
val check_command: Proof.context -> xstring * Position.T -> string |
19 |
val check_option: Proof.context -> xstring * Position.T -> string |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59809
diff
changeset
|
20 |
val print_antiquotations: bool -> Proof.context -> unit |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
21 |
val antiquotation: binding -> 'a context_parser -> |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
22 |
({source: Token.src, state: Toplevel.state, context: Proof.context} -> 'a -> string) -> |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
23 |
theory -> theory |
22124 | 24 |
val boolean: string -> bool |
25 |
val integer: string -> int |
|
61456 | 26 |
val eval_antiquote: Toplevel.state -> Antiquote.text_antiquote -> string |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
27 |
val output_text: Toplevel.state -> {markdown: bool} -> Input.source -> Latex.text list |
67377
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
28 |
val check_comments: Toplevel.state -> Symbol_Pos.T list -> unit |
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
29 |
val check_token_comments: Toplevel.state -> Token.T -> unit |
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
30 |
val output_token: Toplevel.state -> Token.T -> Latex.text list |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
31 |
val present_thy: theory -> (Toplevel.transition * Toplevel.state) list -> |
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
32 |
Token.T list -> Latex.text list |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
33 |
val pretty_text: Proof.context -> string -> Pretty.T |
28644 | 34 |
val pretty_term: Proof.context -> term -> Pretty.T |
35 |
val pretty_thm: Proof.context -> thm -> Pretty.T |
|
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
36 |
val str_of_source: Token.src -> string |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
37 |
val maybe_pretty_source: (Proof.context -> 'a -> Pretty.T) -> Proof.context -> |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
38 |
Token.src -> 'a list -> Pretty.T list |
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
39 |
val string_of_margin: Proof.context -> Pretty.T -> string |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
40 |
val output: Proof.context -> Pretty.T list -> string |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
41 |
val verbatim_text: Proof.context -> string -> string |
67184 | 42 |
val document_command: {markdown: bool} -> |
43 |
(xstring * Position.T) option * Input.source -> Toplevel.transition -> Toplevel.transition |
|
22124 | 44 |
end; |
45 |
||
37216
3165bc303f66
modernized some structure names, keeping a few legacy aliases;
wenzelm
parents:
37198
diff
changeset
|
46 |
structure Thy_Output: THY_OUTPUT = |
22124 | 47 |
struct |
48 |
||
52042 | 49 |
(** options **) |
22124 | 50 |
|
64556 | 51 |
val display = Attrib.setup_option_bool ("thy_output_display", \<^here>); |
52 |
val break = Attrib.setup_option_bool ("thy_output_break", \<^here>); |
|
53 |
val quotes = Attrib.setup_option_bool ("thy_output_quotes", \<^here>); |
|
54 |
val margin = Attrib.setup_option_int ("thy_output_margin", \<^here>); |
|
55 |
val indent = Attrib.setup_option_int ("thy_output_indent", \<^here>); |
|
56 |
val source = Attrib.setup_option_bool ("thy_output_source", \<^here>); |
|
57 |
val modes = Attrib.setup_option_string ("thy_output_modes", \<^here>); |
|
22124 | 58 |
|
59 |
||
38766
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
60 |
structure Wrappers = Proof_Data |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
61 |
( |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
62 |
type T = ((unit -> string) -> unit -> string) list; |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
63 |
fun init _ = []; |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
64 |
); |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
65 |
|
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
66 |
fun add_wrapper wrapper = Wrappers.map (cons wrapper); |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
67 |
|
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
68 |
val wrap = Wrappers.get #> fold (fn wrapper => fn f => wrapper f); |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
69 |
|
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
70 |
|
22124 | 71 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
72 |
(** maintain global antiquotations **) |
22124 | 73 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
74 |
structure Antiquotations = Theory_Data |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
75 |
( |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
76 |
type T = |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
77 |
(Token.src -> Toplevel.state -> Proof.context -> string) Name_Space.table * |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
78 |
(string -> Proof.context -> Proof.context) Name_Space.table; |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
79 |
val empty : T = |
50201
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49847
diff
changeset
|
80 |
(Name_Space.empty_table Markup.document_antiquotationN, |
c26369c9eda6
Isabelle-specific implementation of quasi-abstract markup elements -- back to module arrangement before d83797ef0d2d;
wenzelm
parents:
49847
diff
changeset
|
81 |
Name_Space.empty_table Markup.document_antiquotation_optionN); |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
82 |
val extend = I; |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
83 |
fun merge ((commands1, options1), (commands2, options2)) : T = |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
84 |
(Name_Space.merge_tables (commands1, commands2), |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
85 |
Name_Space.merge_tables (options1, options2)); |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
86 |
); |
22124 | 87 |
|
55743 | 88 |
val get_antiquotations = Antiquotations.get o Proof_Context.theory_of; |
89 |
||
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
90 |
fun add_command name cmd thy = thy |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
91 |
|> Antiquotations.map (apfst (Name_Space.define (Context.Theory thy) true (name, cmd) #> snd)); |
22124 | 92 |
|
47005
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
93 |
fun add_option name opt thy = thy |
421760a1efe7
maintain generic context naming in structure Name_Space (NB: empty = default_naming, init = local_naming);
wenzelm
parents:
46958
diff
changeset
|
94 |
|> Antiquotations.map (apsnd (Name_Space.define (Context.Theory thy) true (name, opt) #> snd)); |
22124 | 95 |
|
55743 | 96 |
fun check_command ctxt = #1 o Name_Space.check (Context.Proof ctxt) (#1 (get_antiquotations ctxt)); |
26893 | 97 |
|
55743 | 98 |
fun check_option ctxt = #1 o Name_Space.check (Context.Proof ctxt) (#2 (get_antiquotations ctxt)); |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
99 |
|
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
100 |
fun command src state ctxt = |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
101 |
let val (src', f) = Token.check_src ctxt (#1 o get_antiquotations) src |
56029
8bedca4bd5a3
clarified Args.src: more abstract type, position refers to name only;
wenzelm
parents:
56028
diff
changeset
|
102 |
in f src' state ctxt end; |
22124 | 103 |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
104 |
fun option ((xname, pos), s) ctxt = |
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
105 |
let |
55743 | 106 |
val (_, opt) = |
107 |
Name_Space.check (Context.Proof ctxt) (#2 (get_antiquotations ctxt)) (xname, pos); |
|
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
108 |
in opt s ctxt end; |
22124 | 109 |
|
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59809
diff
changeset
|
110 |
fun print_antiquotations verbose ctxt = |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
111 |
let |
55743 | 112 |
val (commands, options) = get_antiquotations ctxt; |
59917
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59809
diff
changeset
|
113 |
val command_names = map #1 (Name_Space.markup_table verbose ctxt commands); |
9830c944670f
more uniform "verbose" option to print name space;
wenzelm
parents:
59809
diff
changeset
|
114 |
val option_names = map #1 (Name_Space.markup_table verbose ctxt options); |
43564
9864182c6bad
document antiquotations are managed as theory data, with proper name space and entity markup;
wenzelm
parents:
42669
diff
changeset
|
115 |
in |
50301 | 116 |
[Pretty.big_list "document antiquotations:" (map Pretty.mark_str command_names), |
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
117 |
Pretty.big_list "document antiquotation options:" (map Pretty.mark_str option_names)] |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
118 |
end |> Pretty.writeln_chunks; |
22124 | 119 |
|
56069
451d5b73f8cf
simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents:
56052
diff
changeset
|
120 |
fun antiquotation name scan body = |
38766
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
121 |
add_command name |
8891f4520d16
Thy_Output: options based on proper context, although Thy_Output.add_wrapper still allows to maintain old-style wrapper combinators (setmp_CRITICAL etc.);
wenzelm
parents:
37216
diff
changeset
|
122 |
(fn src => fn state => fn ctxt => |
58011
bc6bced136e5
tuned signature -- moved type src to Token, without aliases;
wenzelm
parents:
57080
diff
changeset
|
123 |
let val (x, ctxt') = Token.syntax scan src ctxt |
56069
451d5b73f8cf
simplified programming interface to define ML antiquotations -- NB: the transformed context ignores updates of the context parser;
wenzelm
parents:
56052
diff
changeset
|
124 |
in body {source = src, state = state, context = ctxt'} x end); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
125 |
|
22124 | 126 |
|
127 |
||
128 |
(** syntax of antiquotations **) |
|
129 |
||
130 |
(* option values *) |
|
131 |
||
132 |
fun boolean "" = true |
|
133 |
| boolean "true" = true |
|
134 |
| boolean "false" = false |
|
135 |
| boolean s = error ("Bad boolean value: " ^ quote s); |
|
136 |
||
137 |
fun integer s = |
|
138 |
let |
|
139 |
fun int ss = |
|
140 |
(case Library.read_int ss of (i, []) => i |
|
141 |
| _ => error ("Bad integer value: " ^ quote s)); |
|
142 |
in (case Symbol.explode s of "-" :: ss => ~ (int ss) | ss => int ss) end; |
|
143 |
||
144 |
||
145 |
(* outer syntax *) |
|
146 |
||
147 |
local |
|
148 |
||
36950 | 149 |
val property = |
62969 | 150 |
Parse.position Parse.name -- Scan.optional (Parse.$$$ "=" |-- Parse.!!! Parse.name) ""; |
36950 | 151 |
|
152 |
val properties = |
|
153 |
Scan.optional (Parse.$$$ "[" |-- Parse.!!! (Parse.enum "," property --| Parse.$$$ "]")) []; |
|
22124 | 154 |
|
155 |
in |
|
156 |
||
36950 | 157 |
val antiq = |
40800
330eb65c9469
Parse.liberal_name for document antiquotations and attributes;
wenzelm
parents:
39689
diff
changeset
|
158 |
Parse.!!! |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
159 |
(Parse.token Parse.liberal_name -- properties -- Parse.args --| Scan.ahead Parse.eof) |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
160 |
>> (fn ((name, props), args) => (props, name :: args)); |
22124 | 161 |
|
162 |
end; |
|
163 |
||
164 |
||
61457 | 165 |
(* eval antiquote *) |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
166 |
|
61471 | 167 |
local |
168 |
||
169 |
fun eval_antiq state (opts, src) = |
|
170 |
let |
|
171 |
val preview_ctxt = fold option opts (Toplevel.presentation_context_of state); |
|
172 |
val print_ctxt = Context_Position.set_visible false preview_ctxt; |
|
173 |
||
174 |
fun cmd ctxt = wrap ctxt (fn () => command src state ctxt) (); |
|
175 |
val _ = cmd preview_ctxt; |
|
66021 | 176 |
val print_modes = space_explode "," (Config.get print_ctxt modes) @ [Latex.latexN]; |
61471 | 177 |
in Print_Mode.with_modes print_modes (fn () => cmd print_ctxt) () end; |
178 |
||
179 |
in |
|
180 |
||
61456 | 181 |
fun eval_antiquote _ (Antiquote.Text ss) = Symbol_Pos.content ss |
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
182 |
| eval_antiquote state (Antiquote.Control {name, body, ...}) = |
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
183 |
eval_antiq state |
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
184 |
([], Token.make_src name (if null body then [] else [Token.read_cartouche body])) |
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
185 |
| eval_antiquote state (Antiquote.Antiq {range = (pos, _), body, ...}) = |
61456 | 186 |
let |
187 |
val keywords = |
|
188 |
(case try Toplevel.presentation_context_of state of |
|
189 |
SOME ctxt => Thy_Header.get_keywords' ctxt |
|
190 |
| NONE => |
|
191 |
error ("Unknown context -- cannot expand document antiquotations" ^ |
|
192 |
Position.here pos)); |
|
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
193 |
in eval_antiq state (Token.read_antiq keywords antiq (body, pos)) end; |
61456 | 194 |
|
61471 | 195 |
end; |
42508
e21362bf1d93
allow nested @{antiq} (nonterminal) and @@{antiq} terminal;
wenzelm
parents:
42399
diff
changeset
|
196 |
|
56548 | 197 |
|
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
198 |
|
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
199 |
(** document output **) |
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
200 |
|
61457 | 201 |
(* output text *) |
56548 | 202 |
|
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
203 |
fun output_text state {markdown} source = |
61457 | 204 |
let |
62749 | 205 |
val is_reported = |
206 |
(case try Toplevel.context_of state of |
|
207 |
SOME ctxt => Context_Position.is_visible ctxt |
|
208 |
| NONE => true); |
|
209 |
||
61457 | 210 |
val pos = Input.pos_of source; |
211 |
val syms = Input.source_explode source; |
|
212 |
||
62749 | 213 |
val _ = |
214 |
if is_reported then |
|
215 |
Position.report pos (Markup.language_document (Input.is_delimited source)) |
|
216 |
else (); |
|
217 |
||
67184 | 218 |
val output_antiquotes = |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
219 |
map (fn ant => Latex.text (eval_antiquote state ant, #1 (Antiquote.range [ant]))); |
61036
f6f2959bed67
clarified language context, e.g. relevant for symbols;
wenzelm
parents:
60100
diff
changeset
|
220 |
|
61461 | 221 |
fun output_line line = |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
222 |
(if Markdown.line_is_item line then [Latex.string "\\item "] else []) @ |
61461 | 223 |
output_antiquotes (Markdown.line_content line); |
224 |
||
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
225 |
fun output_block (Markdown.Par lines) = |
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
226 |
Latex.block (separate (Latex.string "\n") (map (Latex.block o output_line) lines)) |
61459
5f2ddeb15c06
clarified nesting of paragraphs: indentation is taken into account more uniformly;
wenzelm
parents:
61458
diff
changeset
|
227 |
| output_block (Markdown.List {kind, body, ...}) = |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
228 |
Latex.environment_block (Markdown.print_kind kind) (output_blocks body) |
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
229 |
and output_blocks blocks = separate (Latex.string "\n\n") (map output_block blocks); |
67184 | 230 |
in |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
231 |
if Toplevel.is_skipped_proof state then [] |
67184 | 232 |
else if markdown andalso exists (Markdown.is_control o Symbol_Pos.symbol) syms |
233 |
then |
|
234 |
let |
|
235 |
val ants = Antiquote.parse pos syms; |
|
236 |
val reports = Antiquote.antiq_reports ants; |
|
237 |
val blocks = Markdown.read_antiquotes ants; |
|
238 |
val _ = if is_reported then Position.reports (reports @ Markdown.reports blocks) else (); |
|
67186
a58bbe66ac81
avoid excessive whitespace between antiquotations and text;
wenzelm
parents:
67184
diff
changeset
|
239 |
in output_blocks blocks end |
67184 | 240 |
else |
241 |
let |
|
242 |
val ants = Antiquote.parse pos (Symbol_Pos.trim_blanks syms); |
|
243 |
val reports = Antiquote.antiq_reports ants; |
|
244 |
val _ = if is_reported then Position.reports (reports @ Markdown.text_reports ants) else (); |
|
67186
a58bbe66ac81
avoid excessive whitespace between antiquotations and text;
wenzelm
parents:
67184
diff
changeset
|
245 |
in output_antiquotes ants end |
67184 | 246 |
end; |
48918
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
47005
diff
changeset
|
247 |
|
6e5fd4585512
check side-comments of command spans (normally filtered out in Outer_Syntax.toplevel_source);
wenzelm
parents:
47005
diff
changeset
|
248 |
|
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
249 |
(* output tokens with comments *) |
22124 | 250 |
|
67353 | 251 |
local |
252 |
||
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
253 |
fun output_symbols syms = |
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
254 |
[Latex.text (Latex.output_symbols (map Symbol_Pos.symbol syms), #1 (Symbol_Pos.range syms))]; |
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
255 |
|
67358 | 256 |
val output_symbols_antiq = |
257 |
(fn Antiquote.Text syms => output_symbols syms |
|
67353 | 258 |
| Antiquote.Control {name = (name, _), body, ...} => |
67374
5a049cf98438
clarified output (see also 909dcdec2122, 34d1913f0b20);
wenzelm
parents:
67372
diff
changeset
|
259 |
Latex.string (Latex.output_symbols [Symbol.encode (Symbol.Control name)]) :: |
67358 | 260 |
output_symbols body |
67353 | 261 |
| Antiquote.Antiq {body, ...} => |
67358 | 262 |
Latex.enclose_body "%\n\\isaantiq\n" "{}%\n\\endisaantiq\n" (output_symbols body)); |
67353 | 263 |
|
67359
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
264 |
fun output_symbols_comment state {antiq} (is_comment, syms) = |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
265 |
if is_comment then |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
266 |
Latex.enclose_body ("%\n\\isamarkupcmt{") "}" |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
267 |
(output_text state {markdown = false} |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
268 |
(Input.source true (Symbol_Pos.implode syms) (Symbol_Pos.range syms))) |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
269 |
else if antiq then maps output_symbols_antiq (Antiquote.parse (#1 (Symbol_Pos.range syms)) syms) |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
270 |
else output_symbols syms; |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
271 |
|
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
272 |
val scan_symbols_comment = |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
273 |
Scan.many1 (fn (s, _) => s <> Symbol.comment andalso Symbol.not_eof s) >> pair false || |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
274 |
(Symbol_Pos.$$ Symbol.comment ::: Scan.many (Symbol.is_blank o Symbol_Pos.symbol)) -- |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
275 |
Scan.option (Symbol_Pos.scan_cartouche_content "Document token error: ") |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
276 |
>> (fn (syms, NONE) => (false, syms) | (_, SOME syms) => (true, syms)); |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
277 |
|
67375 | 278 |
fun read_symbols_comment syms = |
279 |
if exists (fn (s, _) => s = Symbol.comment) syms then |
|
280 |
Scan.read Symbol_Pos.stopper (Scan.repeat scan_symbols_comment) syms |
|
281 |
else NONE; |
|
67372 | 282 |
|
67353 | 283 |
in |
284 |
||
67359
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
285 |
fun output_body state antiq bg en syms = |
67375 | 286 |
(case read_symbols_comment syms of |
287 |
SOME res => maps (output_symbols_comment state {antiq = antiq}) res |
|
288 |
| NONE => output_symbols syms) |> Latex.enclose_body bg en |
|
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
289 |
and output_token state tok = |
67353 | 290 |
let |
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
291 |
val syms = Input.source_explode (Token.input_of tok); |
67353 | 292 |
val output = |
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
293 |
if Token.is_kind Token.Comment tok then [] |
67359
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
294 |
else if Token.is_command tok then output_body state false "\\isacommand{" "}" syms |
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
295 |
else if Token.is_kind Token.Keyword tok andalso |
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
296 |
Symbol.is_ascii_identifier (Token.content_of tok) |
67359
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
297 |
then output_body state false "\\isakeyword{" "}" syms |
67353 | 298 |
else if Token.is_kind Token.String tok then |
67359
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
299 |
output_body state false "{\\isachardoublequoteopen}" "{\\isachardoublequoteclose}" syms |
67353 | 300 |
else if Token.is_kind Token.Alt_String tok then |
67359
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
301 |
output_body state false "{\\isacharbackquoteopen}" "{\\isacharbackquoteclose}" syms |
67353 | 302 |
else if Token.is_kind Token.Verbatim tok then |
67359
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
303 |
output_body state true "{\\isacharverbatimopen}" "{\\isacharverbatimclose}" syms |
67353 | 304 |
else if Token.is_kind Token.Cartouche tok then |
67359
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
305 |
output_body state false "{\\isacartoucheopen}" "{\\isacartoucheclose}" syms |
fed0e220be45
more uniform output: formal comments within {* ... *};
wenzelm
parents:
67358
diff
changeset
|
306 |
else output_body state false "" "" syms; |
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
307 |
in output end |
67353 | 308 |
handle ERROR msg => error (msg ^ Position.here (Token.pos_of tok)); |
309 |
||
67377
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
310 |
fun check_comments state = |
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
311 |
read_symbols_comment #> (Option.app o List.app) (fn (is_comment, syms) => |
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
312 |
(output_symbols_comment state {antiq = false} (is_comment, syms); |
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
313 |
if is_comment then check_comments state syms else ())); |
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
314 |
|
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
315 |
fun check_token_comments state tok = |
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
316 |
check_comments state (Input.source_explode (Token.input_of tok)); |
143665524d8e
check formal comments recursively, within arbitrary cartouches (unknown sublanguages);
wenzelm
parents:
67375
diff
changeset
|
317 |
|
67353 | 318 |
end; |
319 |
||
320 |
||
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
321 |
|
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
322 |
(** present theory source **) |
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
323 |
|
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
324 |
(*NB: arranging white space around command spans is a black art*) |
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
325 |
|
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
326 |
|
22124 | 327 |
(* presentation tokens *) |
328 |
||
329 |
datatype token = |
|
67360 | 330 |
Ignore_Token |
59065 | 331 |
| Basic_Token of Token.T |
332 |
| Markup_Token of string * Input.source |
|
333 |
| Markup_Env_Token of string * Input.source |
|
61456 | 334 |
| Raw_Token of Input.source; |
22124 | 335 |
|
59065 | 336 |
fun basic_token pred (Basic_Token tok) = pred tok |
22124 | 337 |
| basic_token _ _ = false; |
338 |
||
51267 | 339 |
val improper_token = basic_token Token.is_improper; |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
340 |
val comment_token = basic_token Token.is_comment; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
341 |
val blank_token = basic_token Token.is_blank; |
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
342 |
val newline_token = basic_token Token.is_newline; |
22124 | 343 |
|
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
344 |
fun present_token state tok = |
61457 | 345 |
(case tok of |
67360 | 346 |
Ignore_Token => [] |
67356
ba226b87c69e
output token content with formal comments and antiquotations;
wenzelm
parents:
67354
diff
changeset
|
347 |
| Basic_Token tok => output_token state tok |
67357 | 348 |
| Markup_Token (cmd, source) => |
349 |
Latex.enclose_body ("%\n\\isamarkup" ^ cmd ^ "{") "%\n}\n" |
|
350 |
(output_text state {markdown = false} source) |
|
61457 | 351 |
| Markup_Env_Token (cmd, source) => |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
352 |
[Latex.environment_block ("isamarkup" ^ cmd) (output_text state {markdown = true} source)] |
67186
a58bbe66ac81
avoid excessive whitespace between antiquotations and text;
wenzelm
parents:
67184
diff
changeset
|
353 |
| Raw_Token source => |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
354 |
Latex.string "%\n" :: output_text state {markdown = true} source @ [Latex.string "\n"]); |
61455 | 355 |
|
356 |
||
22124 | 357 |
(* command spans *) |
358 |
||
359 |
type command = string * Position.T * string list; (*name, position, tags*) |
|
360 |
type source = (token * (string * int)) list; (*token, markup flag, meta-comment depth*) |
|
361 |
||
362 |
datatype span = Span of command * (source * source * source * source) * bool; |
|
363 |
||
364 |
fun make_span cmd src = |
|
365 |
let |
|
366 |
fun take_newline (tok :: toks) = |
|
367 |
if newline_token (fst tok) then ([tok], toks, true) |
|
368 |
else ([], tok :: toks, false) |
|
369 |
| take_newline [] = ([], [], false); |
|
370 |
val (((src_prefix, src_main), src_suffix1), (src_suffix2, src_appendix, newline)) = |
|
371 |
src |
|
372 |
|> take_prefix (improper_token o fst) |
|
373 |
||>> take_suffix (improper_token o fst) |
|
374 |
||>> take_prefix (comment_token o fst) |
|
375 |
||> take_newline; |
|
376 |
in Span (cmd, (src_prefix, src_main, src_suffix1 @ src_suffix2, src_appendix), newline) end; |
|
377 |
||
378 |
||
379 |
(* present spans *) |
|
380 |
||
381 |
local |
|
382 |
||
383 |
fun err_bad_nesting pos = |
|
384 |
error ("Bad nesting of commands in presentation" ^ pos); |
|
385 |
||
386 |
fun edge which f (x: string option, y) = |
|
387 |
if x = y then I |
|
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
388 |
else (case which (x, y) of NONE => I | SOME txt => cons (Latex.string (f txt))); |
22124 | 389 |
|
390 |
val begin_tag = edge #2 Latex.begin_tag; |
|
391 |
val end_tag = edge #1 Latex.end_tag; |
|
392 |
fun open_delim delim e = edge #2 Latex.begin_delim e #> delim #> edge #2 Latex.end_delim e; |
|
393 |
fun close_delim delim e = edge #1 Latex.begin_delim e #> delim #> edge #1 Latex.end_delim e; |
|
394 |
||
395 |
in |
|
396 |
||
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
397 |
fun present_span keywords document_tags span state state' |
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
398 |
(tag_stack, active_tag, newline, latex, present_cont) = |
22124 | 399 |
let |
400 |
val present = fold (fn (tok, (flag, 0)) => |
|
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
401 |
fold cons (present_token state' tok) |
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
402 |
#> cons (Latex.string flag) |
22124 | 403 |
| _ => I); |
404 |
||
405 |
val Span ((cmd_name, cmd_pos, cmd_tags), srcs, span_newline) = span; |
|
406 |
||
407 |
val (tag, tags) = tag_stack; |
|
46924 | 408 |
val tag' = try hd (fold (update (op =)) cmd_tags (the_list tag)); |
22124 | 409 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
410 |
val nesting = Toplevel.level state' - Toplevel.level state; |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
411 |
|
22124 | 412 |
val active_tag' = |
413 |
if is_some tag' then tag' |
|
414 |
else if cmd_name = "end" andalso not (Toplevel.is_toplevel state') then NONE |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
415 |
else |
67138 | 416 |
(case Keyword.command_tags keywords cmd_name @ document_tags of |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
417 |
default_tag :: _ => SOME default_tag |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
418 |
| [] => |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
419 |
if Keyword.is_vacuous keywords cmd_name andalso Toplevel.is_proof state |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
420 |
then active_tag |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
421 |
else NONE); |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
422 |
|
22124 | 423 |
val edge = (active_tag, active_tag'); |
424 |
||
425 |
val newline' = |
|
426 |
if is_none active_tag' then span_newline else newline; |
|
427 |
||
428 |
val tag_stack' = |
|
429 |
if nesting = 0 andalso not (Toplevel.is_proof state) then tag_stack |
|
430 |
else if nesting >= 0 then (tag', replicate nesting tag @ tags) |
|
431 |
else |
|
33957 | 432 |
(case drop (~ nesting - 1) tags of |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
433 |
tg :: tgs => (tg, tgs) |
48992 | 434 |
| [] => err_bad_nesting (Position.here cmd_pos)); |
22124 | 435 |
|
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
436 |
val latex' = |
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
437 |
latex |
22124 | 438 |
|> end_tag edge |
439 |
|> close_delim (fst present_cont) edge |
|
440 |
|> snd present_cont |
|
441 |
|> open_delim (present (#1 srcs)) edge |
|
442 |
|> begin_tag edge |
|
443 |
|> present (#2 srcs); |
|
444 |
val present_cont' = |
|
445 |
if newline then (present (#3 srcs), present (#4 srcs)) |
|
446 |
else (I, present (#3 srcs) #> present (#4 srcs)); |
|
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
447 |
in (tag_stack', active_tag', newline', latex', present_cont') end; |
22124 | 448 |
|
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
449 |
fun present_trailer ((_, tags), active_tag, _, latex, present_cont) = |
22124 | 450 |
if not (null tags) then err_bad_nesting " at end of theory" |
451 |
else |
|
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
452 |
latex |
22124 | 453 |
|> end_tag (active_tag, NONE) |
454 |
|> close_delim (fst present_cont) (active_tag, NONE) |
|
455 |
|> snd present_cont; |
|
456 |
||
457 |
end; |
|
458 |
||
459 |
||
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
460 |
(* present_thy *) |
22124 | 461 |
|
462 |
local |
|
463 |
||
61455 | 464 |
val markup_true = "\\isamarkuptrue%\n"; |
465 |
val markup_false = "\\isamarkupfalse%\n"; |
|
466 |
||
22124 | 467 |
val space_proper = |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
468 |
Scan.one Token.is_blank -- Scan.many Token.is_comment -- Scan.one Token.is_proper; |
22124 | 469 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
470 |
val is_improper = not o (Token.is_proper orf Token.is_begin_ignore orf Token.is_end_ignore); |
22124 | 471 |
val improper = Scan.many is_improper; |
472 |
val improper_end = Scan.repeat (Scan.unless space_proper (Scan.one is_improper)); |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
473 |
val blank_end = Scan.repeat (Scan.unless space_proper (Scan.one Token.is_blank)); |
22124 | 474 |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
475 |
val opt_newline = Scan.option (Scan.one Token.is_newline); |
22124 | 476 |
|
477 |
val ignore = |
|
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
478 |
Scan.depend (fn d => opt_newline |-- Scan.one Token.is_begin_ignore |
22124 | 479 |
>> pair (d + 1)) || |
36959
f5417836dbea
renamed structure OuterLex to Token and type token to Token.T, keeping legacy aliases for some time;
wenzelm
parents:
36950
diff
changeset
|
480 |
Scan.depend (fn d => Scan.one Token.is_end_ignore --| |
43947
9b00f09f7721
defer evaluation of Scan.message, for improved performance in the frequent situation where failure is handled later (e.g. via ||);
wenzelm
parents:
43564
diff
changeset
|
481 |
(if d = 0 then Scan.fail_with (K (fn () => "Bad nesting of meta-comments")) else opt_newline) |
22124 | 482 |
>> pair (d - 1)); |
483 |
||
36950 | 484 |
val tag = (improper -- Parse.$$$ "%" -- improper) |-- Parse.!!! (Parse.tag_name --| blank_end); |
22124 | 485 |
|
486 |
val locale = |
|
36950 | 487 |
Scan.option ((Parse.$$$ "(" -- improper -- Parse.$$$ "in") |-- |
62969 | 488 |
Parse.!!! (improper |-- Parse.name --| (improper -- Parse.$$$ ")"))); |
22124 | 489 |
|
490 |
in |
|
491 |
||
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
492 |
fun present_thy thy command_results toks = |
22124 | 493 |
let |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
494 |
val keywords = Thy_Header.get_keywords thy; |
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
495 |
|
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
496 |
|
22124 | 497 |
(* tokens *) |
498 |
||
499 |
val ignored = Scan.state --| ignore |
|
67360 | 500 |
>> (fn d => (NONE, (Ignore_Token, ("", d)))); |
22124 | 501 |
|
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
502 |
fun markup pred mk flag = Scan.peek (fn d => |
36950 | 503 |
improper |-- |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
504 |
Parse.position (Scan.one (fn tok => |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
505 |
Token.is_command tok andalso pred keywords (Token.content_of tok))) -- |
22124 | 506 |
Scan.repeat tag -- |
51627
589daaf48dba
tuned signature -- agree with markup terminology;
wenzelm
parents:
51626
diff
changeset
|
507 |
Parse.!!!! ((improper -- locale -- improper) |-- Parse.document_source --| improper_end) |
59064 | 508 |
>> (fn (((tok, pos'), tags), source) => |
59065 | 509 |
let val name = Token.content_of tok |
510 |
in (SOME (name, pos', tags), (mk (name, source), (flag, d))) end)); |
|
22124 | 511 |
|
512 |
val command = Scan.peek (fn d => |
|
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
513 |
Scan.optional (Scan.one Token.is_command_modifier ::: improper) [] -- |
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
514 |
Scan.one Token.is_command -- Scan.repeat tag |
59939
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59924
diff
changeset
|
515 |
>> (fn ((cmd_mod, cmd), tags) => |
7d46aa03696e
support for 'restricted' modifier: only qualified accesses outside the local scope;
wenzelm
parents:
59924
diff
changeset
|
516 |
map (fn tok => (NONE, (Basic_Token tok, ("", d)))) cmd_mod @ |
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
517 |
[(SOME (Token.content_of cmd, Token.pos_of cmd, tags), |
61455 | 518 |
(Basic_Token cmd, (markup_false, d)))])); |
22124 | 519 |
|
520 |
val cmt = Scan.peek (fn d => |
|
61579 | 521 |
(Parse.$$$ "--" || Parse.$$$ Symbol.comment) |-- |
522 |
Parse.!!!! (improper |-- Parse.document_source) >> |
|
59065 | 523 |
(fn source => (NONE, (Markup_Token ("cmt", source), ("", d))))); |
22124 | 524 |
|
525 |
val other = Scan.peek (fn d => |
|
59065 | 526 |
Parse.not_eof >> (fn tok => (NONE, (Basic_Token tok, ("", d))))); |
22124 | 527 |
|
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
528 |
val tokens = |
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
529 |
(ignored || |
61455 | 530 |
markup Keyword.is_document_heading Markup_Token markup_true || |
531 |
markup Keyword.is_document_body Markup_Env_Token markup_true || |
|
61456 | 532 |
markup Keyword.is_document_raw (Raw_Token o #2) "") >> single || |
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
533 |
command || |
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
534 |
(cmt || other) >> single; |
22124 | 535 |
|
536 |
||
537 |
(* spans *) |
|
538 |
||
59065 | 539 |
val is_eof = fn (_, (Basic_Token x, _)) => Token.is_eof x | _ => false; |
540 |
val stopper = Scan.stopper (K (NONE, (Basic_Token Token.eof, ("", 0)))) is_eof; |
|
22124 | 541 |
|
542 |
val cmd = Scan.one (is_some o fst); |
|
27732 | 543 |
val non_cmd = Scan.one (is_none o fst andf not o is_eof) >> #2; |
22124 | 544 |
|
545 |
val comments = Scan.many (comment_token o fst o snd); |
|
546 |
val blank = Scan.one (blank_token o fst o snd); |
|
547 |
val newline = Scan.one (newline_token o fst o snd); |
|
548 |
val before_cmd = |
|
549 |
Scan.option (newline -- comments) -- |
|
550 |
Scan.option (newline -- comments) -- |
|
551 |
Scan.option (blank -- comments) -- cmd; |
|
552 |
||
553 |
val span = |
|
554 |
Scan.repeat non_cmd -- cmd -- |
|
555 |
Scan.repeat (Scan.unless before_cmd non_cmd) -- |
|
556 |
Scan.option (newline >> (single o snd)) |
|
557 |
>> (fn (((toks1, (cmd, tok2)), toks3), tok4) => |
|
558 |
make_span (the cmd) (toks1 @ (tok2 :: (toks3 @ the_default [] tok4)))); |
|
559 |
||
57080
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
560 |
val spans = toks |
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
561 |
|> take_suffix Token.is_space |> #1 |
0e5fa27d3293
strip trailing white space, to avoid notorious problems of jEdit with last line;
wenzelm
parents:
56548
diff
changeset
|
562 |
|> Source.of_list |
59924
801b979ec0c2
more general notion of command span: command keyword not necessarily at start;
wenzelm
parents:
59917
diff
changeset
|
563 |
|> Source.source' 0 Token.stopper (Scan.error (Scan.bulk tokens >> flat)) |
58864 | 564 |
|> Source.source stopper (Scan.error (Scan.bulk span)) |
22124 | 565 |
|> Source.exhaust; |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
566 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
567 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
568 |
(* present commands *) |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
569 |
|
67147 | 570 |
val document_tags = space_explode "," (Options.default_string \<^system_option>\<open>document_tags\<close>); |
67138 | 571 |
|
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
572 |
fun present_command tr span st st' = |
67191 | 573 |
Toplevel.setmp_thread_position tr |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
574 |
(present_span keywords document_tags span st st'); |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
575 |
|
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
576 |
fun present _ [] = I |
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
577 |
| present st (((tr, st'), span) :: rest) = present_command tr span st st' #> present st' rest; |
22124 | 578 |
in |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
579 |
if length command_results = length spans then |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
580 |
((NONE, []), NONE, true, [], (I, I)) |
28427
cc9f7d99fb73
turned process_thy into present_thy, which merely does presentation (wrt. persistent intermediate states);
wenzelm
parents:
28273
diff
changeset
|
581 |
|> present Toplevel.toplevel (command_results ~~ spans) |
22124 | 582 |
|> present_trailer |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
583 |
|> rev |
22124 | 584 |
else error "Messed-up outer syntax for presentation" |
585 |
end; |
|
586 |
||
587 |
end; |
|
588 |
||
589 |
||
590 |
||
591 |
(** setup default output **) |
|
592 |
||
593 |
(* options *) |
|
594 |
||
53171 | 595 |
val _ = Theory.setup |
67147 | 596 |
(add_option \<^binding>\<open>show_types\<close> (Config.put show_types o boolean) #> |
597 |
add_option \<^binding>\<open>show_sorts\<close> (Config.put show_sorts o boolean) #> |
|
598 |
add_option \<^binding>\<open>show_structs\<close> (Config.put show_structs o boolean) #> |
|
599 |
add_option \<^binding>\<open>show_question_marks\<close> (Config.put show_question_marks o boolean) #> |
|
600 |
add_option \<^binding>\<open>show_abbrevs\<close> (Config.put show_abbrevs o boolean) #> |
|
601 |
add_option \<^binding>\<open>names_long\<close> (Config.put Name_Space.names_long o boolean) #> |
|
602 |
add_option \<^binding>\<open>names_short\<close> (Config.put Name_Space.names_short o boolean) #> |
|
603 |
add_option \<^binding>\<open>names_unique\<close> (Config.put Name_Space.names_unique o boolean) #> |
|
604 |
add_option \<^binding>\<open>eta_contract\<close> (Config.put Syntax_Trans.eta_contract o boolean) #> |
|
605 |
add_option \<^binding>\<open>display\<close> (Config.put display o boolean) #> |
|
606 |
add_option \<^binding>\<open>break\<close> (Config.put break o boolean) #> |
|
607 |
add_option \<^binding>\<open>quotes\<close> (Config.put quotes o boolean) #> |
|
608 |
add_option \<^binding>\<open>mode\<close> (add_wrapper o Print_Mode.with_modes o single) #> |
|
609 |
add_option \<^binding>\<open>margin\<close> (Config.put margin o integer) #> |
|
610 |
add_option \<^binding>\<open>indent\<close> (Config.put indent o integer) #> |
|
611 |
add_option \<^binding>\<open>source\<close> (Config.put source o boolean) #> |
|
612 |
add_option \<^binding>\<open>goals_limit\<close> (Config.put Goal_Display.goals_limit o integer)); |
|
22124 | 613 |
|
614 |
||
615 |
(* basic pretty printing *) |
|
616 |
||
61435 | 617 |
fun perhaps_trim ctxt = |
618 |
not (Config.get ctxt display) ? Symbol.trim_blanks; |
|
22124 | 619 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
620 |
fun pretty_text ctxt = |
61435 | 621 |
Pretty.chunks o map Pretty.str o map (perhaps_trim ctxt) o split_lines; |
22124 | 622 |
|
26710
f79aa228c582
pretty_term: no revert_skolems here, but auto_fixes (token translations will do the rest);
wenzelm
parents:
26455
diff
changeset
|
623 |
fun pretty_term ctxt t = Syntax.pretty_term (Variable.auto_fixes t ctxt) t; |
24920 | 624 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
625 |
fun pretty_thm ctxt = pretty_term ctxt o Thm.full_prop_of; |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
626 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
627 |
fun pretty_term_style ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
628 |
pretty_term ctxt (style t); |
22124 | 629 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
630 |
fun pretty_thm_style ctxt (style, th) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
631 |
pretty_term ctxt (style (Thm.full_prop_of th)); |
22124 | 632 |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
633 |
fun pretty_term_typ ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
634 |
let val t' = style t |
39288 | 635 |
in pretty_term ctxt (Type.constraint (Term.fastype_of t') t') end; |
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
636 |
|
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
637 |
fun pretty_term_typeof ctxt (style, t) = |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
638 |
Syntax.pretty_typ ctxt (Term.fastype_of (style t)); |
22124 | 639 |
|
25373
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
640 |
fun pretty_const ctxt c = |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
641 |
let |
42360 | 642 |
val t = Const (c, Consts.type_scheme (Proof_Context.consts_of ctxt) c) |
25373
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
643 |
handle TYPE (msg, _, _) => error msg; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
644 |
val ([t'], _) = Variable.import_terms true [t] ctxt; |
ccbf65080fdf
@{const}: improved ProofContext.read_const does the job;
wenzelm
parents:
25241
diff
changeset
|
645 |
in pretty_term ctxt t' end; |
22124 | 646 |
|
25407
2859cf34aaf0
abbrev: bypass full term check via ProofContext.standard_infer_types (prevents forced expansion);
wenzelm
parents:
25373
diff
changeset
|
647 |
fun pretty_abbrev ctxt s = |
22124 | 648 |
let |
42399 | 649 |
val t = Syntax.read_term (Proof_Context.set_mode Proof_Context.mode_abbrev ctxt) s; |
24920 | 650 |
fun err () = error ("Abbreviated constant expected: " ^ Syntax.string_of_term ctxt t); |
22124 | 651 |
val (head, args) = Term.strip_comb t; |
652 |
val (c, T) = Term.dest_Const head handle TERM _ => err (); |
|
42360 | 653 |
val (U, u) = Consts.the_abbreviation (Proof_Context.consts_of ctxt) c |
22124 | 654 |
handle TYPE _ => err (); |
655 |
val t' = Term.betapplys (Envir.expand_atom T (U, u), args); |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
656 |
val eq = Logic.mk_equals (t, t'); |
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
657 |
val ctxt' = Variable.auto_fixes eq ctxt; |
42360 | 658 |
in Proof_Context.pretty_term_abbrev ctxt' eq end; |
22124 | 659 |
|
63553
4a72b37ac4b8
text antiquotation for locales (similar to classes)
haftmann
parents:
63120
diff
changeset
|
660 |
fun pretty_locale ctxt (name, pos) = |
4a72b37ac4b8
text antiquotation for locales (similar to classes)
haftmann
parents:
63120
diff
changeset
|
661 |
let |
4a72b37ac4b8
text antiquotation for locales (similar to classes)
haftmann
parents:
63120
diff
changeset
|
662 |
val thy = Proof_Context.theory_of ctxt |
4a72b37ac4b8
text antiquotation for locales (similar to classes)
haftmann
parents:
63120
diff
changeset
|
663 |
in (Pretty.str o Locale.extern thy o Locale.check thy) (name, pos) end; |
4a72b37ac4b8
text antiquotation for locales (similar to classes)
haftmann
parents:
63120
diff
changeset
|
664 |
|
39305
d4fa19eb0822
'class' and 'type' are now antiquoations by default
haftmann
parents:
39134
diff
changeset
|
665 |
fun pretty_class ctxt = |
42360 | 666 |
Pretty.str o Proof_Context.extern_class ctxt o Proof_Context.read_class ctxt; |
39305
d4fa19eb0822
'class' and 'type' are now antiquoations by default
haftmann
parents:
39134
diff
changeset
|
667 |
|
39309
74469faa27ca
type antiquotation: allow arbitrary type abbreviations, but fail with user-space exception on bad input
haftmann
parents:
39308
diff
changeset
|
668 |
fun pretty_type ctxt s = |
56002 | 669 |
let val Type (name, _) = Proof_Context.read_type_name {proper = true, strict = false} ctxt s |
42360 | 670 |
in Pretty.str (Proof_Context.extern_type ctxt name) end; |
39305
d4fa19eb0822
'class' and 'type' are now antiquoations by default
haftmann
parents:
39134
diff
changeset
|
671 |
|
64986 | 672 |
fun pretty_prf full ctxt = Proof_Syntax.pretty_clean_proof_of ctxt full; |
22124 | 673 |
|
60100
2ce2e0358e91
clarified document antiquotation: same check as in ML antiquotation;
wenzelm
parents:
60094
diff
changeset
|
674 |
fun pretty_theory ctxt (name, pos) = (Theory.check ctxt (name, pos); Pretty.str name); |
22124 | 675 |
|
676 |
||
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
677 |
(* default output *) |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
678 |
|
61814
1ca1142e1711
clarified type Token.src: plain token list, with usual implicit value assignment;
wenzelm
parents:
61748
diff
changeset
|
679 |
val str_of_source = space_implode " " o map Token.unparse o Token.args_of_src; |
22124 | 680 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
681 |
fun maybe_pretty_source pretty ctxt src xs = |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
682 |
map (pretty ctxt) xs (*always pretty in order to exhibit errors!*) |
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
683 |
|> (if Config.get ctxt source then K [pretty_text ctxt (str_of_source src)] else I); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
684 |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
685 |
fun string_of_margin ctxt = Pretty.string_of_margin (Config.get ctxt margin); |
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
686 |
|
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
687 |
fun output ctxt prts = |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
688 |
prts |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
689 |
|> Config.get ctxt quotes ? map Pretty.quote |
38767
d8da44a8dd25
proper context for various Thy_Output options, via official configuration options in ML and Isar;
wenzelm
parents:
38766
diff
changeset
|
690 |
|> (if Config.get ctxt display then |
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
691 |
map (Pretty.indent (Config.get ctxt indent) #> string_of_margin ctxt #> Output.output) |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
692 |
#> space_implode "\\isasep\\isanewline%\n" |
61462 | 693 |
#> Latex.environment "isabelle" |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
694 |
else |
61877
276ad4354069
renamed Pretty.str_of to Pretty.unformatted_string_of to emphasize its meaning;
wenzelm
parents:
61865
diff
changeset
|
695 |
map |
276ad4354069
renamed Pretty.str_of to Pretty.unformatted_string_of to emphasize its meaning;
wenzelm
parents:
61865
diff
changeset
|
696 |
((if Config.get ctxt break then string_of_margin ctxt else Pretty.unformatted_string_of) |
276ad4354069
renamed Pretty.str_of to Pretty.unformatted_string_of to emphasize its meaning;
wenzelm
parents:
61865
diff
changeset
|
697 |
#> Output.output) |
58716
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
698 |
#> space_implode "\\isasep\\isanewline%\n" |
23a380cc45f4
official support for "tt" style variants, avoid fragile \verb in LaTeX;
wenzelm
parents:
58069
diff
changeset
|
699 |
#> enclose "\\isa{" "}"); |
22124 | 700 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
701 |
|
61619 | 702 |
(* verbatim text *) |
61473
34d1913f0b20
clarified control antiquotations: decode control symbol to get name;
wenzelm
parents:
61471
diff
changeset
|
703 |
|
61619 | 704 |
fun verbatim_text ctxt = |
705 |
if Config.get ctxt display then |
|
61865 | 706 |
split_lines #> map (prefix (Symbol.spaces (Config.get ctxt indent))) #> cat_lines #> |
61619 | 707 |
Latex.output_ascii #> Latex.environment "isabellett" |
708 |
else |
|
709 |
split_lines #> |
|
710 |
map (Latex.output_ascii #> enclose "\\isatt{" "}") #> |
|
711 |
space_implode "\\isasep\\isanewline%\n"; |
|
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
712 |
|
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
713 |
|
61619 | 714 |
(* antiquotations for basic entities *) |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
715 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
716 |
local |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
717 |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
718 |
fun basic_entities name scan pretty = |
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
719 |
antiquotation name scan (fn {source, context = ctxt, ...} => |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
720 |
output ctxt o maybe_pretty_source pretty ctxt source); |
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
721 |
|
59175
bf465f335e85
system option "pretty_margin" is superseded by "thy_output_margin";
wenzelm
parents:
59067
diff
changeset
|
722 |
fun basic_entities_style name scan pretty = |
61491
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
723 |
antiquotation name scan (fn {source, context = ctxt, ...} => fn (style, xs) => |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
724 |
output ctxt |
97261e6c1d42
another antiquotation short form: undecorated cartouche as alias for @{text};
wenzelm
parents:
61473
diff
changeset
|
725 |
(maybe_pretty_source (fn ctxt => fn x => pretty ctxt (style, x)) ctxt source xs)); |
32890
77df12652210
generalized term styles: transformations may depend on arguments; modernized term_style module; antiquotations thm, prop and term accepting term styles
haftmann
parents:
32738
diff
changeset
|
726 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
727 |
fun basic_entity name scan = basic_entities name (scan >> single); |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
728 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
729 |
in |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
730 |
|
53171 | 731 |
val _ = Theory.setup |
67147 | 732 |
(basic_entities_style \<^binding>\<open>thm\<close> (Term_Style.parse -- Attrib.thms) pretty_thm_style #> |
733 |
basic_entity \<^binding>\<open>prop\<close> (Term_Style.parse -- Args.prop) pretty_term_style #> |
|
734 |
basic_entity \<^binding>\<open>term\<close> (Term_Style.parse -- Args.term) pretty_term_style #> |
|
735 |
basic_entity \<^binding>\<open>term_type\<close> (Term_Style.parse -- Args.term) pretty_term_typ #> |
|
736 |
basic_entity \<^binding>\<open>typeof\<close> (Term_Style.parse -- Args.term) pretty_term_typeof #> |
|
737 |
basic_entity \<^binding>\<open>const\<close> (Args.const {proper = true, strict = false}) pretty_const #> |
|
738 |
basic_entity \<^binding>\<open>abbrev\<close> (Scan.lift Args.embedded_inner_syntax) pretty_abbrev #> |
|
739 |
basic_entity \<^binding>\<open>typ\<close> Args.typ_abbrev Syntax.pretty_typ #> |
|
740 |
basic_entity \<^binding>\<open>locale\<close> (Scan.lift (Parse.position Args.name)) pretty_locale #> |
|
741 |
basic_entity \<^binding>\<open>class\<close> (Scan.lift Args.embedded_inner_syntax) pretty_class #> |
|
742 |
basic_entity \<^binding>\<open>type\<close> (Scan.lift Args.embedded) pretty_type #> |
|
743 |
basic_entities \<^binding>\<open>prf\<close> Attrib.thms (pretty_prf false) #> |
|
744 |
basic_entities \<^binding>\<open>full_prf\<close> Attrib.thms (pretty_prf true) #> |
|
745 |
basic_entity \<^binding>\<open>theory\<close> (Scan.lift (Parse.position Args.name)) pretty_theory); |
|
32898
e871d897969c
term styles also cover antiquotations term_type and typeof
haftmann
parents:
32890
diff
changeset
|
746 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
747 |
end; |
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
748 |
|
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
749 |
|
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
750 |
|
62453 | 751 |
(** document command **) |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
752 |
|
67184 | 753 |
fun document_command {markdown} (loc, txt) = |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
754 |
Toplevel.keep (fn state => |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
755 |
(case loc of |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
756 |
NONE => ignore (output_text state {markdown = markdown} txt) |
58999
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
757 |
| SOME (_, pos) => |
ed09ae4ea2d8
uniform treatment of all document markup commands: 'text' and 'txt' merely differ in LaTeX style;
wenzelm
parents:
58992
diff
changeset
|
758 |
error ("Illegal target specification -- not a theory context" ^ Position.here pos))) o |
67184 | 759 |
Toplevel.present_local_theory loc (fn state => |
67194
1c0a6a957114
positions as postlude: avoid intrusion of odd %-forms into main tex source;
wenzelm
parents:
67191
diff
changeset
|
760 |
ignore (output_text state {markdown = markdown} txt)); |
58928
23d0ffd48006
plain value Keywords.keywords, which might be used outside theory for bootstrap purposes;
wenzelm
parents:
58923
diff
changeset
|
761 |
|
30390
ad591ee76c78
simplified interface to define document antiquotations, cf. antiquotatation, maybe_pretty_source, output;
wenzelm
parents:
30381
diff
changeset
|
762 |
end; |