]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/ambitus.ly
Imported Upstream version 2.14.2
[lilypond.git] / input / regression / ambitus.ly
index f53e3e987b8824fb6852256b9165f2a8bc139680..7c36449dfc048e660e5d2552a06b97c10f13dadd 100644 (file)
@@ -1,27 +1,34 @@
+\version "2.14.0"
+
 \header {
-    texidoc = "Ambituses indicate pitch ranges for voices.
+  texidoc = "Ambitus indicate pitch ranges for voices.
 
 Accidentals only show up if they're not part of key
-signature. @code{AmbitusNoteHead} grobs also have ledger lines.
-
+signature.  @code{AmbitusNoteHead} grobs also have ledger lines.
+The noteheads are printed in overstrike, so there's only one
+visible; the accidentals are prevented from colliding. 
 "
 }
-\version "2.12.0"
 
 \layout {
-    ragged-right = ##t
-    \context {
-       \Voice
-       \consists Ambitus_engraver
-    }
+  \context {
+    \Voice
+    \consists "Ambitus_engraver"
+  }
 }
 
-\relative
 <<
-    \new Staff {  \time  2/4 c4 f' }
-    \new Staff \relative {
-       \time  2/4
-       \key d \major
-       cis as'
-    }
+  \new Staff \relative c'{
+    \time 2/4
+    c4 f'
+  }
+  \new Staff \relative c' {
+    \time  2/4
+    \key d \major
+    cis as'
+  }
+  \new Staff \relative c' {
+    \time 2/4
+    c4 cis
+  }
 >>