]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/transcription-of-ancient-music-with-incipit.ly
Imported Upstream version 2.18.0
[lilypond.git] / Documentation / snippets / transcription-of-ancient-music-with-incipit.ly
index 8692f345bffacb1bde7a47a636973847b5e0b7ed..cebe3d2876ecbe555998b7ea0f2c97af67a14426 100644 (file)
@@ -4,7 +4,7 @@
 %% and then run scripts/auxiliar/makelsr.py
 %%
 %% This file is in the public domain.
-\version "2.16.0"
+\version "2.17.30"
 
 \header {
   lsrtags = "ancient-notation, specific-notation, tweaks-and-overrides, workaround"
@@ -26,10 +26,10 @@ global = {
   \key g \major
   \time 4/4
   %make the staff lines invisible on staves
-  \override Staff.BarLine #'transparent = ##t
+  \hide Staff.BarLine
   \skip 1*8 % the actual music
   % let finis bar go through all staves
-  \override Staff.BarLine #'transparent = ##f
+  \override Staff.BarLine.transparent = ##f
   % finis bar
   \bar "|."
 }
@@ -42,7 +42,7 @@ discantusNotes = {
     c'4 e'4.( d'8 c' b |
     a4) b a2 |
     b4.( c'8 d'4) c'4 |
-    \once \override NoteHead #'transparent = ##t c'1 |
+    \once \hide NoteHead c'1 |
     b\breve |
   }
 }
@@ -64,7 +64,7 @@ altusNotes = {
     a2 g4 e |
     fis g4.( fis16 e fis4) |
     g1 |
-    \once \override NoteHead #'transparent = ##t g1 |
+    \once \hide NoteHead g1 |
     g\breve |
   }
 }
@@ -84,7 +84,7 @@ tenorNotes = {
     R1 |
     R1 |
     r2 d'2. d'4 b e' | % two bars
-    \once \override NoteHead #'transparent = ##t e'1 |
+    \once \hide NoteHead e'1 |
     d'\breve |
   }
 }
@@ -103,7 +103,7 @@ bassusNotes = {
     R1 |
     R1 |
     g2. e4 |
-    \once \override NoteHead #'transparent = ##t e1 |
+    \once \hide NoteHead e1 |
     g\breve |
   }
 }
@@ -118,9 +118,9 @@ incipitDiscantus = \markup {
   \score {
     {
       \set Staff.instrumentName = #"Discantus "
-      \override NoteHead #'style = #'neomensural
-      \override Rest #'style = #'neomensural
-      \override Staff.TimeSignature #'style = #'neomensural
+      \override NoteHead.style = #'neomensural
+      \override Rest.style = #'neomensural
+      \override Staff.TimeSignature.style = #'neomensural
       \cadenzaOn
       \clef "neomensural-c1"
       \key f \major
@@ -143,9 +143,9 @@ incipitAltus = \markup {
   \score {
     {
       \set Staff.instrumentName = #"Altus "
-      \override NoteHead #'style = #'neomensural
-      \override Rest #'style = #'neomensural
-      \override Staff.TimeSignature #'style = #'neomensural
+      \override NoteHead.style = #'neomensural
+      \override Rest.style = #'neomensural
+      \override Staff.TimeSignature.style = #'neomensural
       \cadenzaOn
       \clef "neomensural-c3"
       \key f \major
@@ -169,9 +169,9 @@ incipitTenor = \markup {
   \score {
     {
       \set Staff.instrumentName = #"Tenor  "
-      \override NoteHead #'style = #'neomensural
-      \override Rest #'style = #'neomensural
-      \override Staff.TimeSignature #'style = #'neomensural
+      \override NoteHead.style = #'neomensural
+      \override Rest.style = #'neomensural
+      \override Staff.TimeSignature.style = #'neomensural
       \cadenzaOn
       \clef "neomensural-c4"
       \key f \major
@@ -197,9 +197,9 @@ incipitBassus = \markup {
   \score {
     {
       \set Staff.instrumentName = #"Bassus  "
-      \override NoteHead #'style = #'neomensural
-      \override Rest #'style = #'neomensural
-      \override Staff.TimeSignature #'style = #'neomensural
+      \override NoteHead.style = #'neomensural
+      \override Rest.style = #'neomensural
+      \override Staff.TimeSignature.style = #'neomensural
       \cadenzaOn
       \clef "bass"
       \key f \major
@@ -259,13 +259,13 @@ incipitBassus = \markup {
     \context {
       \Score
       % no bars in staves
-      \override BarLine #'transparent = ##t
+      \hide BarLine
     }
     % the next three instructions keep the lyrics between the bar lines
     \context {
       \Lyrics
       \consists "Bar_engraver"
-      \override BarLine #'transparent = ##t
+      \hide BarLine
     }
     \context {
       \StaffGroup
@@ -274,7 +274,7 @@ incipitBassus = \markup {
     \context {
       \Voice
       % no slurs
-      \override Slur #'transparent = ##t
+      \hide Slur
       % Comment in the below "\remove" command to allow line
       % breaking also at those barlines where a note overlaps
       % into the next bar.  The command is commented out in this