]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stem-and-beam-behavior-in-tablature.ly
Merge commit 'origin/master'
[lilypond.git] / Documentation / snippets / stem-and-beam-behavior-in-tablature.ly
1 %% Do not edit this file; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% This file is in the public domain.
4 \version "2.13.4"
5
6 \header {
7   lsrtags = "fretted-strings"
8
9 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
10   texidoces = "
11 La dirección de las plicas se contola de la misma forma en la
12 tablatura que en la notación tradicional. Las barras se pueden
13 poner horizontales, como se muestra en este ejemplo.
14
15 "
16   doctitlees = "Comportamiento de las plicas y las barras de corchea en tablaturas"
17
18 %% Translation of GIT committish: d96023d8792c8af202c7cb8508010c0d3648899d
19   texidocde = "
20 Die Richtung von Hälsen wird in Tabulaturen genauso wie in normaler Notation
21 eingestellt.  Balken können horizontal eingestellt werden, wie das Beispiel
22 zeigt.
23
24 "
25   doctitlede = "Hals- und Balkenverhalten in einer Tabulatur"
26 %% Translation of GIT committish: cd4950757ab1ab6c89805b0b7c978bfca034f940
27
28   texidocfr = "
29 La direction des hampes se gère dans les tablatures tout comme en
30 notation traditionnelle.  Les ligatures peuvent être mises à l'horizontale
31 comme le montre cet exemple.
32
33 "
34   doctitlefr = "Hampes et ligatures en mode tablature"
35
36
37   texidoc = "
38 The direction of stems is controlled the same way in tablature as in
39 traditional notation. Beams can be made horizontal, as shown in this
40 example.
41
42 "
43   doctitle = "Stem and beam behavior in tablature"
44 } % begin verbatim
45
46 \new TabStaff {
47   \relative c {
48     g16 b d g b d g b
49     \stemDown
50     \override Beam #'damping = #+inf.0
51     g,,16 b d g b d g b
52   }
53 }
54