X-Git-Url: https://git.donarmstrong.com/?a=blobdiff_plain;f=Documentation%2Fsnippets%2Fchord-glissando-in-tablature.ly;h=540c6e8a7586dab8e33d71a8fd70d138d052ff62;hb=155f287175f1ab04c0f4d84e6e472b22f9c2b6c4;hp=94bcb6af5adc923896ce18067d0080a6e72f6ff3;hpb=b01ca49c05566b73d690ae84fda6040b24fcf73f;p=lilypond.git diff --git a/Documentation/snippets/chord-glissando-in-tablature.ly b/Documentation/snippets/chord-glissando-in-tablature.ly index 94bcb6af5a..540c6e8a75 100644 --- a/Documentation/snippets/chord-glissando-in-tablature.ly +++ b/Documentation/snippets/chord-glissando-in-tablature.ly @@ -1,46 +1,37 @@ -% 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.14.0 -\version "2.14.0" +%% DO NOT EDIT this file manually; it is automatically +%% 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.18.0" \header { -%% Translation of GIT committish: 70f5f30161f7b804a681cd080274bfcdc9f4fe8c - - texidoces = " -Los deslizamientos para acordes se pueden indicar tanto en el contexto -Staff como en TabStaff. Los números de cuerda son necesarios para -TabStaff porque los cálculos de cuerda automáticos son diferentes para -los acordes y para notas sueltas. - -" - - doctitlees = "Glissando de acordes en tablatura" -%% Translation of GIT committish: f86f00c1a8de0f034ba48506de2801c074bd5422 - texidocde = " -Gleiten von Akkorden kann sowohl im normalen Notensystem als auch in einer -Tabulatur notiert werden. Saitennummern werden für Tabulaturen -benötigt, weil die automatische Saitenberechnung unterschiedlich für -Akkorde und einzelne Noten funktioniert. -" - doctitlede = "Akkordglissando in Tabulaturen" - - lsrtags = "fretted-strings" + texidoc = " -Slides for chords can be indicated in both Staff and TabStaff. -String numbers are necessary for TabStaff because automatic -string calculations are different for chords and for single notes. +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. + " 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 { + << + \new Staff { + \clef "treble_8" + \myMusic + } + \new TabStaff \myMusic + >> } \score { @@ -49,7 +40,7 @@ myMusic = \relative c' { \clef "treble_8" \myMusic } - \new TabStaff { + \new TabStaff \with { \override Glissando.style = #'none } { \myMusic } >>