]> git.donarmstrong.com Git - lilypond.git/blobdiff - input/lsr/ambiti-multiple-voices.ly
LSR: update.
[lilypond.git] / input / lsr / ambiti-multiple-voices.ly
index e1a34268423f93bfbe6c31ef3779f86504290000..d6c563becfeb72aebcd735b1d4a9ddab5d6da4eb 100644 (file)
@@ -1,44 +1,27 @@
-%% Do not edit this file; it is auto-generated from LSR!
-%% Tags: pitches
-\version "2.11.35"
+%% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
+%% This file is in the public domain.
+\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.
-
-
-
 " }
-
+% begin verbatim
 \new Staff \with {
   \consists "Ambitus_engraver"
-}
-<<
-  \new Voice \with {
-    \remove "Ambitus_engraver"
-  } \relative c'' {
-    \override Ambitus #'X-offset = #-1.0
-    \voiceOne
-    c4 a d e f2
-  }
-  \new Voice \with {
-    \remove "Ambitus_engraver"
-  } \relative c' {
-    \voiceTwo
-    es4 f g as b2
   }
+<<
+  \new Voice \relative c'' {
+      \voiceOne
+      c4 a d e f1
+    }
+  \new Voice \relative c' {
+      \voiceTwo
+      es4 f g as b1
+    }
 >>