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