Rev 5947 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
Rev 5947 | Rev 7189 | ||
---|---|---|---|
Line 2... | Line 2... | ||
2 | 2 | ||
3 | <h2 class="wimscenter">Le <span class="tt">minimal</span> style of symtext</h2> |
3 | <h2 class="wimscenter">Le <span class="tt">minimal</span> style of symtext</h2> |
4 | 4 | <p> |
|
5 | This is the style that contains only the minimal set of identifications. |
5 | This is the style that contains only the minimal set of identifications. |
6 | It is especially useful for linguistic applications. Called without option, |
6 | It is especially useful for linguistic applications. Called without option, |
7 | it detects any difference between the words. Only multiple spaces are |
7 | it detects any difference between the words. Only multiple spaces are |
8 | compacted. But one can use options to do some identifications (upper- and |
8 | compacted. But one can use options to do some identifications (upper- and |
9 | lower-cases, letters with or without accent, etc.). |
9 | lower-cases, letters with or without accent, etc.). |
10 | <p> |
10 | </p> |
- | 11 | p> |
|
11 | No dictionary is defined for this style for the time being. |
12 | No dictionary is defined for this style for the time being. |
12 | </p> |
13 | </p> |
- | 14 | ||
13 | !set n=!recordcnt symtext/$style/macros.help |
15 | !set n=!recordcnt symtext/$style/macros.help |
14 | !if $n>0 |
16 | !if $n>0 |
15 | 17 | ||
16 | Definitions of positional macros: (recall that to replace a word |
18 | Definitions of positional macros: (recall that to replace a word |
17 | (a, b, c, etc.) by a group of several words, one has to enclose the latter |
19 | (a, b, c, etc.) by a group of several words, one has to enclose the latter |
18 | by a pair of brackets.) |
20 | by a pair of brackets.) |
19 | 21 | ||
20 | !readproc tabletheme |
22 | !readproc tabletheme |
21 | 23 | ||
22 | $table_header |
24 | $table_header |
23 | $table_hdtr<th>Syntax</th><th>Recognition</th></tr> |
25 | $table_hdtr<th>Syntax</th><th>Recognition</th></tr> |
24 | 26 | ||
25 | !for i=1 to $n |
27 | !for i=1 to $n |
26 | !set l=!record $i of symtext/$style/macros.help |
28 | !set l=!record $i of symtext/$style/macros.help |
27 | !distribute lines $l into s1, s2 |
29 | !distribute lines $l into s1, s2 |
28 | $table_tr<td |
30 | $table_tr<td class="tt">$s1</td> |
29 | <td>$s2</td> |
31 | <td>$s2</td> |
- | 32 | </tr> |
|
30 | !next i |
33 | !next i |
31 | </tr> |
- | |
32 | $table_end |
34 | $table_end |
33 | 35 | ||
34 | !endif |
36 | !endif |
35 | - | ||
36 | - |