File: exG0.block

package info (click to toggle)
msc-generator 8.6.4-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 180,484 kB
  • sloc: cpp: 129,931; yacc: 23,655; ansic: 7,464; sh: 5,026; makefile: 948
file content (15 lines) | stat: -rw-r--r-- 543 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
##Multi blocks
##multi sheets block
##Prepending a block with the 'multi' keyword will result in an effect as if the block existed in multiple copies. You can specify the number of copies, which defaults to 3. Then later you can use '<blockname>.front' or '<blockname>.back' (or '.1' and similar) to start arrows from individual copies.
multi 2 box A: From;
multi box B: To {
    use margin=5;
    *oval o: My;
    box: Yours;
    below prev+first *oval: Hers;
}
rightof box C: Beyond;
A.front->B;
A->B.o;
B.1, B.back -> C; 
B->C [color=red];