]> git.donarmstrong.com Git - lilypond.git/blob - init/symbol.ly
3efcaa9b0befedc363c5c9a11467e2894a8aa505
[lilypond.git] / init / symbol.ly
1 % symbol.ly
2 %
3 % FIXME other name
4   
5 \version "0.1.6";
6   
7 breve = \duration { -1 0 }
8 longa = \duration { -2 0 }
9
10 \include "dynamic.ly"
11 \include "dutch.ly" 
12 \include "script.ly"
13
14
15 Gourlay = 1.0
16 Wordwrap = 0.0
17
18 \include "paper16.ly"
19 \include "paper20.ly"
20
21
22 default_paper = \paper{
23         \paper_sixteen
24 }
25
26 % ugh
27 \include "midi.ly"
28
29 % declarations for standard directions
30 left = -1
31 right = 1
32 up = 1
33 down = -1
34 center=0
35
36
37 stemup = {
38         \skip 1*0;
39         % Stupid hack to make < { \stemup } > work
40         \property Voice.ydirection = \up 
41         }
42 stemboth= {
43         \skip 1*0;
44         \property Voice.ydirection = \center
45 }
46 stemdown = {    
47         \skip 1*0;
48         \property Voice.ydirection = \down
49 }
50
51