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