]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/accidental-voice.ly
Issue 4487/3: Implement partial markups
[lilypond.git] / input / regression / accidental-voice.ly
index 85c2d9c8e4e407419f113538b335ae3e6e1ec676..61cebc562525aceb5b24818af1bfecc60262aeea 100644 (file)
@@ -1,7 +1,8 @@
-\version "2.3.22"
+\version "2.17.6"
+\layout { ragged-right = ##t }
 
 \header{
 
 \header{
-texidoc="
+  texidoc="
 This shows how modern cross voice auto cautionary accidentals are handled.
 The first two fisses get accidentals because they belong to different voices.
 The first f gets cautionary natural because of previous measure.
 This shows how modern cross voice auto cautionary accidentals are handled.
 The first two fisses get accidentals because they belong to different voices.
 The first f gets cautionary natural because of previous measure.
@@ -12,31 +13,28 @@ The last f gets cautionary natural because fis was only in the other voice.
 
 
 voicea =  \transpose c c' {
 
 
 voicea =  \transpose c c' {
-    \stemUp
-    fis2 a2 f4 fis a2
+  \stemUp
+  fis2 a2 f4 fis a2
 }
 voiceb =  \transpose c c' {
 }
 voiceb =  \transpose c c' {
-    \stemDown
-    c2 fis2  f4 c   f2
+  \stemDown
+  c2 fis2  f4 c   f2
 }
 
 }
 
-\score {
-    <<
-       
-       \new NoteNames {
-           \set printOctaveNames = ##f
-            \voicea
-            }
-       \context Staff << 
-           #(set-accidental-style 'modern-voice-cautionary)
-           \new Voice \voicea
-           \new Voice \voiceb
-       >>
-       \new NoteNames {
-           \set printOctaveNames = ##f
-           \voiceb
+<<
+  
+  \new NoteNames {
+    \set printOctaveNames = ##f
+    \voicea
+  }
+  \context Staff << 
+    \accidentalStyle modern-voice-cautionary
+    \new Voice \voicea
+    \new Voice \voiceb
+  >>
+  \new NoteNames {
+    \set printOctaveNames = ##f
+    \voiceb
 
 
-                        }
-    >>
-\layout { raggedright = ##t }
-}
+  }
+>>