]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/polyphony-in-tablature.ly
e596fe18df8acba0389ff51db4f787fb4cf4371a
[lilypond.git] / Documentation / snippets / polyphony-in-tablature.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.dsi.unimi.it
3 %% Make any changes in LSR itself, or in Documentation/snippets/new/ ,
4 %% and then run scripts/auxiliar/makelsr.py
5 %%
6 %% This file is in the public domain.
7 \version "2.12.2"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12 %% Translation of GIT committish: 59caa3adce63114ca7972d18f95d4aadc528ec3d
13   texidoces = "
14 La polifonía se crea de la misma forma en un @code{TabStaff} que
15 en una pauta normal.
16
17 "
18   doctitlees = "Polifonía en tablaturas"
19
20
21 %% Translation of GIT committish: 0a868be38a775ecb1ef935b079000cebbc64de40
22   texidocde = "
23 Polyphonie kann in einer Tabulatur (@code{TabStaff}) genauso wie in einem
24 normalen Notensystem erstellt werden.
25
26 "
27   doctitlede = "Polyphonie in einer Tabulatur"
28
29 %% Translation of GIT committish: ac6297e4fa174ac5759cc450ad085c2fac9ba00b
30
31   texidocfr = "
32 Une section polyphonique s'obtient dans un @code{TabStaff} de la
33 même manière que dans une portée normale.
34
35 "
36   doctitlefr = "Polyphonie en mode tablature"
37
38
39   texidoc = "
40 Polyphony is created the same way in a @code{TabStaff} as in a regular
41 staff.
42
43 "
44   doctitle = "Polyphony in tablature"
45 } % begin verbatim
46
47 upper = \relative c' {
48   \time 12/8
49   \key e \minor
50   \voiceOne
51   r4. r8 e, fis g16 b g e e' b c b a g fis e
52 }
53
54 lower = \relative c {
55   \key e \minor
56   \voiceTwo
57   r16 e d c b a g4 fis8 e fis g a b c
58 }
59
60 \score {
61   <<
62     \new StaffGroup = "tab with traditional" <<
63       \new Staff = "guitar traditional" <<
64         \clef "treble_8"
65         \context Voice = "upper" \upper
66         \context Voice = "lower" \lower
67       >>
68       \new TabStaff = "guitar tab" <<
69         \context TabVoice = "upper" \upper
70         \context TabVoice = "lower" \lower
71       >>
72     >>
73   >>
74 }
75