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