]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/hammer-on-and-pull-off-using-voices.ly
Imported Upstream version 2.18.2
[lilypond.git] / Documentation / snippets / hammer-on-and-pull-off-using-voices.ly
diff --git a/Documentation/snippets/hammer-on-and-pull-off-using-voices.ly b/Documentation/snippets/hammer-on-and-pull-off-using-voices.ly
new file mode 100644 (file)
index 0000000..df84036
--- /dev/null
@@ -0,0 +1,28 @@
+% DO NOT EDIT this file manually; it is automatically
+% generated from Documentation/snippets/new
+% Make any changes in Documentation/snippets/new/
+% and then run scripts/auxiliar/makelsr.py
+%
+% This file is in the public domain.
+%% Note: this file works from version 2.16.0
+\version "2.16.0"
+
+\header {
+  lsrtags = "editorial-annotations, fretted-strings"
+
+  texidoc = "
+The arc of hammer-on and pull-off is upwards in voices one and three and
+downwards in voices two and four:
+
+"
+  doctitle = "Hammer on and pull off using voices"
+} % begin verbatim
+
+
+\new TabStaff {
+  \relative c' {
+    << { \voiceOne g2( a) }
+    \\ { \voiceTwo a,( b) }
+    >> \oneVoice
+  }
+}