X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fambitus.ly;fp=Documentation%2Fsnippets%2Fambitus.ly;h=882dab4608737d3ea67acc282e627f9750da7f7d;hb=941dff9d2a67080e0dd8474f1e70f0c72ace6424;hp=0000000000000000000000000000000000000000;hpb=5a22d6233a39d3164e1ca043244794c268be4ad0;p=lilypond.git diff --git a/Documentation/snippets/ambitus.ly b/Documentation/snippets/ambitus.ly new file mode 100644 index 0000000000..882dab4608 --- /dev/null +++ b/Documentation/snippets/ambitus.ly @@ -0,0 +1,45 @@ +%% DO NOT EDIT this file manually; it is automatically +%% generated from LSR http://lsr.dsi.unimi.it +%% Make any changes in LSR itself, or in Documentation/snippets/new/ , +%% and then run scripts/auxiliar/makelsr.py +%% +%% This file is in the public domain. +\version "2.14.0" + +\header { + lsrtags = "pitches, vocal-music" + + texidoc = " +Ambitus indicate pitch ranges for voices. + + +Accidentals only show up if they are not part of the key signature. +@code{AmbitusNoteHead} grobs also have ledger lines. + +" + doctitle = "Ambitus" +} % begin verbatim + +\layout { + \context { + \Voice + \consists "Ambitus_engraver" + } +} + +<< + \new Staff { + \relative c' { + \time 2/4 + c4 f' + } + } + \new Staff { + \relative c' { + \time 2/4 + \key d \major + cis4 as' + } + } +>> +