]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/tag-filter.ly
*** empty log message ***
[lilypond.git] / input / regression / tag-filter.ly
index e7d59152769cf167db7f2a059251720ac0ca6ce2..4f3ff5dcbc3d66704f8688e1164c1f148b890104 100644 (file)
@@ -1,5 +1,5 @@
 
-\version "1.9.3"
+\version "2.2.0"
 \header {
 
 texidoc = "The @code{\\tag} command marks music expressions with a
@@ -17,15 +17,15 @@ common =
 \notes \relative c''  {
 
     c1
-    \relative c' <
-       \tag #'part <
+    \relative c' <<
+       \tag #'part <<
          R1 \\
          {
-             \property Voice.fontSize = #-1
+             \set fontSize = #-1
              c4_"cue" f2 g4 } 
-        >
+        >>
        \tag #'score R1
-     >
+     >>
     c1-\tag #'part ^4
 }
 
@@ -33,15 +33,15 @@ common =
 \score {
     \notes \simultaneous { 
     \new Staff {
-       \property Staff.instrument = #"both"
+       \set Staff.instrument = #"both"
        \common
        }
     \new Staff {
-       \property Staff.instrument = #"part"
+       \set Staff.instrument = #"part"
        \apply #(remove-tag 'score) \common
        }
     \new Staff {
-       \property Staff.instrument = #"score"
+       \set Staff.instrument = #"score"
        \apply #(remove-tag 'part) \common
        }
     }