]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/ambitus.ly
resolve merge
[lilypond.git] / Documentation / snippets / ambitus.ly
diff --git a/Documentation/snippets/ambitus.ly b/Documentation/snippets/ambitus.ly
new file mode 100644 (file)
index 0000000..882dab4
--- /dev/null
@@ -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'
+    }
+  }
+>>
+