]> git.donarmstrong.com Git - lilypond.git/blob - input/template/gregorian-transcription.ly
Massive changes - see ChangeLog.
[lilypond.git] / input / template / gregorian-transcription.ly
1 #(ly:set-option 'old-relative)
2 \version "1.9.0"
3
4
5 \header {
6 texidoc = "Modern  transcriptions  of gregrorian music.
7 Gregorian music has no measure, no stems, only uses half and quarter notes,
8 and two types of barlines, a short one indicating a rest, a second indicating a breath mark."
9 }
10
11
12 barOne = \notes { \once \property Staff.BarLine \override #'bar-size = #2
13         \bar "|" }
14 barTwo = \notes { \once \property Staff.BarLine \override #'extra-offset = #'(0 . 2)
15
16                 \once \property Staff.BarLine \override #'bar-size = #2
17         \bar "|" }
18 \score {
19
20 \notes \relative c' {
21         \property Score.timing = ##f
22         \property Staff.Stem \set #'transparent = ##t
23         f4 a2 \barTwo g4 a2  f2 \barOne g4( f-) f(
24         \bar "empty" 
25         \break
26         g-) a2
27 }
28
29 }