LEFT | RIGHT |
(no file at all) | |
1 \version "2.16.0" | 1 \version "2.17.6" |
2 | 2 |
3 \header { | 3 \header { |
4 lsrtags = "vocal-music, ancient-notation, template" | 4 lsrtags = "vocal-music, ancient-notation, template" |
5 | 5 |
6 texidoc = " | 6 texidoc = " |
7 This example demonstrates how to do modern transcription of Gregorian | 7 This example demonstrates how to do modern transcription of Gregorian |
8 music. Gregorian music has no measure, no stems; it uses only half and | 8 music. Gregorian music has no measure, no stems; it uses only half and |
9 quarter note heads, and special marks, indicating rests of different | 9 quarter note heads, and special marks, indicating rests of different |
10 length. | 10 length. |
11 | 11 |
(...skipping 17 matching lines...) Expand all Loading... |
29 \score { | 29 \score { |
30 \new Staff << | 30 \new Staff << |
31 \new Voice = "melody" \chant | 31 \new Voice = "melody" \chant |
32 \new Lyrics = "one" \lyricsto melody \verba | 32 \new Lyrics = "one" \lyricsto melody \verba |
33 >> | 33 >> |
34 \layout { | 34 \layout { |
35 \context { | 35 \context { |
36 \Staff | 36 \Staff |
37 \remove "Time_signature_engraver" | 37 \remove "Time_signature_engraver" |
38 \remove "Bar_engraver" | 38 \remove "Bar_engraver" |
39 \override Stem #'transparent = ##t | 39 \override Stem.transparent = ##t |
40 \override Flag #'transparent = ##t | 40 \override Flag.transparent = ##t |
41 } | 41 } |
42 \context { | 42 \context { |
43 \Voice | 43 \Voice |
44 \override Stem #'length = #0 | 44 \override Stem.length = #0 |
45 } | 45 } |
46 \context { | 46 \context { |
47 \Score | 47 \Score |
48 barAlways = ##t | 48 barAlways = ##t |
49 } | 49 } |
50 } | 50 } |
51 } | 51 } |
52 | 52 |
LEFT | RIGHT |