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