]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/stem-and-beam-behavior-in-tablature.ly
Docs: run convert-ly for 2.14.0.
[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.13.36
8 \version "2.14.0"
9
10 \header {
11 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
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: 718fa63a806b2ae307f320e250bc83236e9cd136
31
32   texidocfr = "
33 La direction des hampes se gère dans les tablatures tout comme en
34 notation traditionnelle.  Les ligatures peuvent être mises à l'horizontale
35 comme le montre cet exemple.
36
37 "
38   doctitlefr = "Hampes et ligatures en mode tablature"
39
40
41   lsrtags = "fretted-strings"
42   texidoc = "
43 The direction of stems is controlled the same way in tablature as in
44 traditional notation.  Beams can be made horizontal, as shown in this
45 example.
46 "
47   doctitle = "Stem and beam behavior in tablature"
48 } % begin verbatim
49
50
51 \new TabStaff {
52   \relative c {
53     \tabFullNotation
54     g16 b d g b d g b
55     \stemDown
56     \override Beam #'concaveness = #10000
57     g,,16 b d g b d g b
58   }
59 }