]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-ambiti-per-voice.ly
Fix makelsr.py and update LSR
[lilypond.git] / input / lsr / adding-ambiti-per-voice.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 %% Tags: pitches, staff-notation, vocal-music
4 \version "2.11.35"
5
6 \header { texidoc = "
7 Ambits can be added per voice. In that case, the ambitus must be moved
8 manually to prevent collisions. 
9 " }
10 % begin verbatim
11 {
12 \new Staff <<
13   \new Voice \with {
14     \consists "Ambitus_engraver"
15   } \relative c'' {
16     \override Ambitus #'X-offset = # 2.0
17     \voiceOne
18     c4 a d e f1
19   }
20   \new Voice \with {
21     \consists "Ambitus_engraver"
22   } \relative c' {
23     \voiceTwo
24         es4 f g as b1
25   }
26 >>
27
28 }