]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stem-and-beam-behavior-in-tablature.ly
Merge branch 'lilypond/translation' of ssh://jomand@git.sv.gnu.org/srv/git/lilypond
[lilypond.git] / Documentation / snippets / stem-and-beam-behavior-in-tablature.ly
1 % Do not edit this file; it is automatically
2 % generated from Documentation/snippets/new
3 % This file is in the public domain.
4 %% Note: this file works from version 2.13.4
5 \version "2.13.4"
6
7 \header {
8 %% Translation of GIT committish: b2d4318d6c53df8469dfa4da09b27c15a374d0ca
9   texidoces = "
10 La dirección de las plicas se contola de la misma forma en la
11 tablatura que en la notación tradicional. Las barras se pueden
12 poner horizontales, como se muestra en este ejemplo.
13
14 "
15   doctitlees = "Comportamiento de las plicas y las barras de corchea en tablaturas"
16
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
27 %% Translation of GIT committish: cd4950757ab1ab6c89805b0b7c978bfca034f940
28
29   texidocfr = "
30 La direction des hampes se gère dans les tablatures tout comme en
31 notation traditionnelle.  Les ligatures peuvent être mises à l'horizontale
32 comme le montre cet exemple.
33
34 "
35   doctitlefr = "Hampes et ligatures en mode tablature"
36
37
38   lsrtags = "fretted-strings"
39   texidoc = "
40 The direction of stems is controlled the same way in tablature as in
41 traditional notation.  Beams can be made horizontal, as shown in this
42 example.
43 "
44   doctitle = "Stem and beam behavior in tablature"
45 } % begin verbatim
46
47
48 \new TabStaff {
49   \relative c {
50     \tabFullNotation
51     g16 b d g b d g b
52     \stemDown
53     \override Beam #'damping = #+inf.0
54     g,,16 b d g b d g b
55   }
56 }