]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/adding-ambitus-per-voice.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / adding-ambitus-per-voice.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.18.0"
8
9 \header {
10   lsrtags = "pitches, staff-notation, vocal-music"
11
12   texidoc = "
13 Ambitus can be added per voice. In this case, the ambitus must be moved
14 manually to prevent collisions.
15
16 "
17   doctitle = "Adding ambitus per voice"
18 } % begin verbatim
19
20 \new Staff <<
21   \new Voice \with {
22     \consists "Ambitus_engraver"
23   } \relative c'' {
24     \override Ambitus.X-offset = #2.0
25     \voiceOne
26     c4 a d e
27     f1
28   }
29   \new Voice \with {
30     \consists "Ambitus_engraver"
31   } \relative c' {
32     \voiceTwo
33     es4 f g as
34     b1
35   }
36 >>