]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/ambitus.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / ambitus.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, vocal-music"
11
12   texidoc = "
13 Ambitus indicate pitch ranges for voices.
14
15
16 Accidentals only show up if they are not part of the key signature.
17 @code{AmbitusNoteHead} grobs also have ledger lines.
18
19 "
20   doctitle = "Ambitus"
21 } % begin verbatim
22
23 \layout {
24   \context {
25     \Voice
26     \consists "Ambitus_engraver"
27   }
28 }
29
30 <<
31   \new Staff {
32     \relative c' {
33       \time 2/4
34       c4 f'
35     }
36   }
37   \new Staff {
38     \relative c' {
39       \time  2/4
40       \key d \major
41       cis4 as'
42     }
43   }
44 >>