]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/ambiti-multiple-voices.ly
Merge branch 'master' of ssh+git://git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / input / lsr / ambiti-multiple-voices.ly
index d51a47ef2296a21ba12e8e6632a86031b16aad65..6864d8d19be1d092de5fe1618f93497bccca2143 100644 (file)
@@ -1,45 +1,27 @@
 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
 %% This file is in the public domain.
-%% Tags: pitches
-\version "2.11.35"
+\version "2.11.38"
 
-\header { texidoc = "
+\header {
+  lsrtags = "pitches, vocal-music"
+ texidoc = "
 If you have multiple voices in a single staff and you want a single
 ambitus per staff rather than per voice, add the
 @code{Ambitus_engraver} to the @code{Staff} context rather than to the
-@code{Voice} context.
-
-This example uses one advanced feature,
-
-
-@code{ \\override Ambitus #'X-offset = #-1.0 }
-% begin verbatim
-
-
-This code moves the ambitus to the left.  The same effect could have
-been achieved with @code{extra-offset}, but then the formatting system
-would not reserve space for the moved object.
-
-
-
+@code{Voice} context. 
 " }
-
+% begin verbatim
 \new Staff \with {
   \consists "Ambitus_engraver"
-}
+  }
 <<
-  \new Voice \with {
-    \remove "Ambitus_engraver"
-  } \relative c'' {
-    \override Ambitus #'X-offset = #-1.0
+  \new Voice \relative c'' {
     \voiceOne
-    c4 a d e f2
+    c4 a d e f1
   }
-  \new Voice \with {
-    \remove "Ambitus_engraver"
-  } \relative c' {
+  \new Voice \relative c' {
     \voiceTwo
-    es4 f g as b2
+    es4 f g as b1
   }
 >>