]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/chord-glissando-in-tablature.ly
lilypond-manuals.css: edit color scheme and some spacing
[lilypond.git] / Documentation / snippets / chord-glissando-in-tablature.ly
index a5b221cf28a84c908cfa39fec19dd1e5e2dc05d2..9b6167453936c3714096283418a84f36fb0679a8 100644 (file)
@@ -1,16 +1,16 @@
 %% DO NOT EDIT this file manually; it is automatically
-%% generated from LSR http://lsr.dsi.unimi.it
+%% generated from LSR http://lsr.di.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.16.0"
+\version "2.18.0"
 
 \header {
   lsrtags = "fretted-strings"
 
   texidoc = "
-Slides for chords can be indicated in both @code{Staff} and
+Slides for chords are indicated by default in both @code{Staff} and
 @code{TabStaff}. String numbers are necessary for @code{TabStaff}
 because automatic string calculations are different for chords and for
 single notes.
@@ -20,7 +20,7 @@ single notes.
 } % begin verbatim
 
 myMusic = \relative c' {
-  <c\3 e\2 g\1>1 \glissando <f\3 a\2 c\1>
+  <c e g>1 \glissando <f a c>
 }
 
 \score {
@@ -29,7 +29,17 @@ myMusic = \relative c' {
       \clef "treble_8"
       \myMusic
     }
-    \new TabStaff {
+    \new TabStaff \myMusic
+  >>
+}
+
+\score {
+  <<
+    \new Staff {
+      \clef "treble_8"
+      \myMusic
+    }
+    \new TabStaff \with { \override Glissando.style = #'none } {
       \myMusic
     }
   >>