X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchord-glissando-in-tablature.ly;h=540c6e8a7586dab8e33d71a8fd70d138d052ff62;hb=d900000e63555ff30b74b50cc31a8d2a2cb63b6a;hp=a5b221cf28a84c908cfa39fec19dd1e5e2dc05d2;hpb=522f419e3ed3e09ecf834bbb5315ac1777ab13e0;p=lilypond.git diff --git a/Documentation/snippets/chord-glissando-in-tablature.ly b/Documentation/snippets/chord-glissando-in-tablature.ly index a5b221cf28..540c6e8a75 100644 --- a/Documentation/snippets/chord-glissando-in-tablature.ly +++ b/Documentation/snippets/chord-glissando-in-tablature.ly @@ -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. @@ -18,9 +18,10 @@ single notes. " doctitle = "Chord glissando in tablature" } % begin verbatim +%=> http://lilypond.1069038.n5.nabble.com/LSR-chord-glissando-in-tablature-obsolete-tc159863.html myMusic = \relative c' { - 1 \glissando + 1 \glissando } \score { @@ -29,7 +30,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 } >>