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
---
- name: laplacian
tag: laplacian
match: "count(*) <= 1" # can be on ∇^2 or on enclosing mrow
replace:
- t: "LahPlahsian" # phrase('laplacian' of x) -- "LahPlahsian" sounds better with speech engines tested
- test:
if: "count(*) = 1"
then:
- test:
if: "$Verbosity!='Terse'"
then: # phrase(function 'of' one variable) -- note OneCore voices spell out "div"
- test:
if: "not(IsNode(*[1], 'leaf'))"
then:
- x: "*[1]"
- name: divergence
tag: divergence
match: "count(*) = 1"
replace:
- test:
if: "$Verbosity='Terse'"
then: # phrase('div' is short for divergence) -- note OneCore voices spell out "div"
else: # phrase('divergence of' this function from the mean)
- test:
if: "not(IsNode(*[1], 'leaf'))"
then:
- x: "*[1]"
- name: curl
tag: curl
match: "count(*) = 1"
replace:
- t: "curl" # phrase(the 'curl of' a field)
- test:
if: "$Verbosity!='Terse'"
then: # phrase(function 'of' one variable) -- note OneCore voices spell out "div"
- test:
if: "not(IsNode(*[1], 'leaf'))"
then:
- x: "*[1]"
- name: gradient
tag: gradient
match: "count(*) = 1"
replace:
- test:
if: "$Verbosity!='Terse'"
then: # phrase(the hill has a 'gradient of' five percent)
else: # phrase(the delete key is labeled 'del')
- test:
if: "not(IsNode(*[1], 'leaf'))"
then:
- x: "*[1]"