blob: e060068864486291ce6647f1274ab6fc4aafa89a (
plain)
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
57
58
59
60
|
(use-modules (skribilo engine lout))
(lout-illustration :ident "document-toolchain"
:alt "a document toolchain" "
# This is Lout code to produce a diagram.
@Diag
aoutline { circle }
afont { Courier Base 1f }
boutline { circle }
bfont { Palatino Slope 2f }
bpaint { black }
bformat { white @Color @Body }
coutline { curvebox }
coutlinestyle { dotted }
doutline { curvebox }
{
@Tbl
strut { yes }
indent { ctr }
aformat { @Cell A | @Cell marginhorizontal { 2.0fe } B |
@Cell C | @Cell D }
amargin { 1.0fe }
{
@Rowa D { W:: @DNode HTML }
@Rowa A { A:: @ANode txt } C { P:: @CNode Lout }
D { X:: @DNode PostScript }
@Rowa A { B:: @ANode skr } B { S:: @BNode Skribilo }
C { Q:: @CNode @LaTeX }
@Rowa A { C:: @ANode rss } C { R:: @CNode ConTeXt }
D { Y:: @DNode PDF }
@Rowa D { Z:: @DNode Info }
}
//
# input arrows
@Arrow from { A } to { S }
@Arrow from { B } to { S }
@Arrow from { C } to { S }
# arrows to intermediate files
@Arrow from { S } to { P }
@Arrow from { S } to { Q }
@Arrow from { S } to { R }
# PS/PDF incoming arrows
@Arrow from { P } to { X }
@Arrow from { P } to { Y }
@Arrow from { Q } to { X }
@Arrow from { Q } to { Y }
@Arrow from { R } to { X }
@Arrow from { R } to { Y }
# HTML and Info
@Link from { S } to { W } arrow { yes } path { vhcurve }
@Link from { S } to { Z } arrow { yes } path { vhcurve }
}
")
|