]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stem-and-beam-behavior-in-tablature.ly
ae5531ca71d38bc1c7f9cdec16604be32d094fab
[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.36
5 \version "2.13.40"
6
7 \header {
8 %% Translation of GIT committish: 5160eccb26cee0bfd802d844233e4a8d795a1e94
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: 0a868be38a775ecb1ef935b079000cebbc64de40
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: 718fa63a806b2ae307f320e250bc83236e9cd136
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 }