repo.or.cz
/
vspell.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
softcount: tolerate zero ngrams
[vspell.git]
/
thesis
/
syllable.dot
blob
f0baa3ed880986dff193942396b025adca4914a9
1
digraph
syllable {
2
rankdir
=LR
3
// fontname=arial;
4
head [
label
=
""
]
;
5
tail [
label
=
""
]
;
6
style
=
dashed
;
7
n1 [
label
=
"Âm đầu"
]
;
8
subgraph
cluster_syllable {
9
label
=
"Vần"
;
10
n2 [
label
=
"Âm đệm"
]
;
11
n3 [
label
=
"Âm chính"
,
shape
=
box
]
;
12
n4 [
label
=
"Âm cuối"
]
;
13
}
14
head
->
n1
;
15
head
->
n2
;
16
head
->
n3
;
17
n1
->
n2
;
18
n1
->
n3
;
19
n2
->
n3
;
20
n3
->
n4
;
21
n3
->
tail
;
22
n4
->
tail
;
23
}