]> git.donarmstrong.com Git - lilypond.git/commitdiff
makelsr.py
authorJames Lowe <pkx166h@gmail.com>
Mon, 6 Jan 2014 07:19:12 +0000 (07:19 +0000)
committerCarl Sorensen <carl.d.sorensen@gmail.com>
Sun, 12 Jan 2014 02:00:53 +0000 (19:00 -0700)
For commit 51230c664

Documentation/snippets/editorial-annotations.snippet-list
Documentation/snippets/fretted-strings.snippet-list
Documentation/snippets/hammer-on-and-pull-off-using-chords.ly [new file with mode: 0644]
Documentation/snippets/hammer-on-and-pull-off-using-voices.ly [new file with mode: 0644]
Documentation/snippets/hammer-on-and-pull-off.ly [new file with mode: 0644]

index b2cb2d8ff9dacc90ac10820261cd38985c893949..c8d2a9a51c4566c3925aa4d733c2965c3745b0c3 100644 (file)
@@ -20,6 +20,9 @@ drawing-circles-around-various-objects.ly
 embedding-native-postscript-in-a--markup-block.ly
 grid-lines--changing-their-appearance.ly
 grid-lines--emphasizing-rhythms-and-notes-synchronization.ly
+hammer-on-and-pull-off-using-chords.ly
+hammer-on-and-pull-off-using-voices.ly
+hammer-on-and-pull-off.ly
 how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-1.ly
 how-to-print-two-rehearsal-marks-above-and-below-the-same-barline-method-2.ly
 making-some-staff-lines-thicker-than-the-others.ly
index 98540818399e3ea3c2597039a5167b8de8fadba6..35ad8bda09dac28e4af88e2942161c1206da4ab8 100644 (file)
@@ -17,6 +17,9 @@ fretboards-alternate-tables.ly
 fretted-string-harmonics-in-tablature.ly
 guitar-slides.ly
 guitar-strum-rhythms.ly
+hammer-on-and-pull-off-using-chords.ly
+hammer-on-and-pull-off-using-voices.ly
+hammer-on-and-pull-off.ly
 how-to-change-fret-diagram-position.ly
 jazz-combo-template.ly
 laissez-vibrer-ties.ly
diff --git a/Documentation/snippets/hammer-on-and-pull-off-using-chords.ly b/Documentation/snippets/hammer-on-and-pull-off-using-chords.ly
new file mode 100644 (file)
index 0000000..880a2cf
--- /dev/null
@@ -0,0 +1,29 @@
+% 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 = "
+When using hammer-on or pull-off with chorded notes, only a single arc
+is drawn. However @q{double arcs} are possible by setting the
+@code{doubleSlurs} property to @code{#t}.
+
+"
+  doctitle = "Hammer on and pull off using chords"
+} % begin verbatim
+
+
+\new TabStaff {
+  \relative c' {
+    % chord hammer-on and pull-off
+    \set doubleSlurs = ##t
+    <g' b>8( <a c> <g b>)
+  }
+}
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
+  }
+}
diff --git a/Documentation/snippets/hammer-on-and-pull-off.ly b/Documentation/snippets/hammer-on-and-pull-off.ly
new file mode 100644 (file)
index 0000000..57c830a
--- /dev/null
@@ -0,0 +1,26 @@
+% 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 = "
+Hammer-on and pull-off can be obtained using slurs.
+
+"
+  doctitle = "Hammer on and pull off"
+} % begin verbatim
+
+
+\new TabStaff {
+  \relative c' {
+    d4( e\2)
+    a( g)
+  }
+}