]> git.donarmstrong.com Git - lilypond.git/blobdiff - Documentation/snippets/chord-glissando-in-tablature.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / chord-glissando-in-tablature.ly
index 1d5707066422c97e1949f6e63ec144fff7090bd3..9b6167453936c3714096283418a84f36fb0679a8 100644 (file)
@@ -1,49 +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.14.2"
+\version "2.18.0"
 
 \header {
   lsrtags = "fretted-strings"
 
-%% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
-
-  texidoces = "
-Los deslizamientos para acordes se pueden indicar tanto en el contexto
-@code{Staff} como en @code{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"
-
-
-%% Translation of GIT committish: 3b125956b08d27ef39cd48bfa3a2f1e1bb2ae8b4
-  texidocfr = "
-Un glissando sur des accords s'indique dans un @code{TabStaff} de la
-même manière que dans un @code{Staff}, à ceci près que nous aurons
-besoin des numéros de corde afin de déterminer correctement les frets
-d'arrivée.
-
-"
-  doctitlefr = "Glissando d'accords et tablature"
-
-
   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.
@@ -53,7 +20,17 @@ 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 {
+  <<
+    \new Staff {
+      \clef "treble_8"
+      \myMusic
+    }
+    \new TabStaff \myMusic
+  >>
 }
 
 \score {
@@ -62,7 +39,7 @@ myMusic = \relative c' {
       \clef "treble_8"
       \myMusic
     }
-    \new TabStaff {
+    \new TabStaff \with { \override Glissando.style = #'none } {
       \myMusic
     }
   >>