]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/polyphony-in-tablature.ly
d8f18926d021108063a3314608b7d01e612ae3c7
[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.14.2"
8
9 \header {
10   lsrtags = "fretted-strings"
11
12 %% Translation of GIT committish: b482c3e5b56c3841a88d957e0ca12964bd3e64fa
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: 28097cf54698db364afeb75658e4c8e0e0ccd716
30   texidocfr = "
31 Une section polyphonique s'obtient dans un @code{TabStaff} de la même
32  manière que dans une portée normale.
33
34 "
35   doctitlefr = "Polyphonie en mode tablature"
36
37   texidoc = "
38 Polyphony is created the same way in a @code{TabStaff} as in a regular
39 staff.
40
41 "
42   doctitle = "Polyphony in tablature"
43 } % begin verbatim
44
45
46 upper = \relative c' {
47   \time 12/8
48   \key e \minor
49   \voiceOne
50   r4. r8 e, fis g16 b g e e' b c b a g fis e
51 }
52
53 lower = \relative c {
54   \key e \minor
55   \voiceTwo
56   r16 e d c b a g4 fis8 e fis g a b c
57 }
58
59 \score {
60   <<
61     \new StaffGroup = "tab with traditional" <<
62       \new Staff = "guitar traditional" <<
63         \clef "treble_8"
64         \context Voice = "upper" \upper
65         \context Voice = "lower" \lower
66       >>
67       \new TabStaff = "guitar tab" <<
68         \context TabVoice = "upper" \upper
69         \context TabVoice = "lower" \lower
70       >>
71     >>
72   >>
73 }
74