]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/adding-ambiti-per-voice.ly
Merge commit 'ce4b499'
[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 \version "2.11.38"
4
5 \header {
6   lsrtags = "pitches, staff-notation, vocal-music"
7  texidoc = "
8 Ambits can be added per voice. In that case, the ambitus must be moved
9 manually to prevent collisions. 
10 " }
11 % begin verbatim
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 >>