]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/ambiti-multiple-voices.ly
LSR->docs update
[lilypond.git] / input / lsr / ambiti-multiple-voices.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.35"
4
5 \header {
6   lsrtags = "pitches"
7  texidoc = "
8 If you have multiple voices in a single staff and you want a single
9 ambitus per staff rather than per voice, add the
10 @code{Ambitus_engraver} to the @code{Staff} context rather than to the
11 @code{Voice} context.
12 " }
13 % begin verbatim
14 \new Staff \with {
15   \consists "Ambitus_engraver"
16   }
17 <<
18   \new Voice \relative c'' {
19       % eliminates collision
20       \override Staff.Ambitus #'X-offset = #-1.0
21       \voiceOne
22       c4 a d e f1
23     }
24   \new Voice \relative c' {
25       \voiceTwo
26       es4 f g as b1
27     }
28 >>
29