]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/regression/ambitus.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / ambitus.ly
index 0c635bc1f4d58dddd7ed85d4c10f7f868de1cc6a..12b84d5630aad1caf67e6bb5082a210f0f2ed61c 100644 (file)
+\version "2.19.21"
 
 \header {
-    texidoc = "Ambituses indicate pitch ranges for voices.
-
-By default, the ambitus grob is put before the clef.  You can control
-this behaviour through the @code{breakAlignOrder} property of the score
-context by redefining the order.
-
-
-The shape of the note heads to use can be changed via the
-@code{note-head-style} property, which holds the glyph name of the
-note head.  The vertical line between the upper and lower head can be
-switched on or off via the @code{join-heads} property.
+  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.
+The noteheads are printed in overstrike, so there's only one
+visible; the accidentals are prevented from colliding. 
 "
 }
 
-%{
-
- tex chokes on #
-
-, e.g. with the following addition to the
-paper block:
-
-@example
-\context @{
-  \ScoreContext
-\override BreakAlignment #'break-align-orders = #(make-vector 3 '(
-    instrument-name
-    left-edge
-    span-bar
-    breathing-sign
-    clef
-    ambitus
-    key-signature
-    staff-bar
-    time-signature
-    custos
-  ))
-@}
-@end example
-
-@example
-\context @{
-  \VoiceContext
-  \consists Ambitus_engraver
-  Ambitus \set #'note-head-style = #'noteheads-2mensural
-  Ambitus \set #'join-heads = ##f
-@}
-@end example
-
-
- %}
-\version "2.2.0"
-
-upper = \notes \relative c {
-       \clef "treble"
-       \key c \minor
-       as'' c e bes f cis d e f g f e d f d e
-       f d e e d f d e e d f d e e d f d e
-       f d e e d f d e e d f d e e d f d e
-}
-
-lower = \notes \relative c {
-       \clef "treble"
-       \key e \major
-       e'2 b4 g a c es fis a cis b a g f e d
-       f e d e f g f e d e f g f e d e f g
-       f e d e f g f e d e f g f e d e f g
-}
-
-\score { \context ChoirStaff {
-       <<
-               \new Staff { \upper }
-               \new Staff { \lower }
-       >> }
-       \paper {
-              \context {
-                       \ScoreContext
-\override BreakAlignment #'break-align-orders = #(make-vector 3 '(
-                               instrument-name
-                               left-edge
-                               ambitus
-                               span-bar
-                               breathing-sign
-                               clef
-                               key-signature
-                               staff-bar
-                               time-signature
-                               custos
-                       ))
-               }
-               \context {
-                       \VoiceContext
-                       \consists Ambitus_engraver
-               }
-       }
+\layout {
+  \context {
+    \Voice
+    \consists "Ambitus_engraver"
+  }
 }
 
+<<
+  \new Staff \relative c'{
+    \time 2/4
+    c4 f'
+  }
+  \new Staff \relative {
+    \time  2/4
+    \key d \major
+    cis' as'
+  }
+  \new Staff \relative {
+    \time 2/4
+    c'4 cis
+  }
+>>