forked from lewdlime/abcm2ps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bravura.abc
56 lines (54 loc) · 2.46 KB
/
bravura.abc
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
% example of musical symbols by Bravura
% --- definitions for SVG output ---
%%beginsvg
<style type="text/css">
@font-face {
font-family: 'Bravura';
src: url(/home/jef/abcm2ps-devel/bravura/woff/Bravura.woff);
font-weight: normal;
font-style: normal;
}
</style>
<defs>
<text id="brace" x="-3" y="0" transform="scale(3,-4.2)" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="tclef" x="-8" y="-6" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="cclef" x="-7" y="-12" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="bclef" x="-7" y="-18" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="csig" x="-5" y="-12" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="ft0" x="-2" y="0" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="nt0" x="-2" y="0" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="sh0" x="-2" y="0" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="dsh0" x="-2" y="0" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="dft0" x="-3" y="0" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
<text id="turn" x="-4" y="0" font-family="Bravura"
font-size="24" font-weight="normal" font-style="normal"></text>
</defs>
%%endsvg
% --- definitions for PostScript output ---
%%beginps nosvg
/brace{/Bravura 24 selectfont
gsave
T -7.5 0 M -.042 mul 3 exch scale
/uniE000 glyphshow
grestore}!
/tclef{/Bravura 24 selectfont M -8 6 RM/uniE050 glyphshow}!
/cclef{/Bravura 24 selectfont M -8 12 RM/uniE05C glyphshow}!
/bclef{/Bravura 24 selectfont M -8 18 RM/uniE062 glyphshow}!
/csig{/Bravura 24 selectfont M -5 12 RM/uniE08A glyphshow}!
/ft0{/Bravura 24 selectfont M -2 0 RM/uniE260 glyphshow}!
/nt0{/Bravura 24 selectfont M -2 0 RM/uniE261 glyphshow}!
/sh0{/Bravura 24 selectfont M -2 0 RM/uniE262 glyphshow}!
/dsh0{/Bravura 24 selectfont M -2 0 RM/uniE263 glyphshow}!
/dft0{/Bravura 24 selectfont M -3 0 RM/uniE264 glyphshow}!
/turn{/Bravura 24 selectfont M -4 0 RM/uniE567 glyphshow}!
%%endps