]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-slurs-with-beams.ly
Fixed errors in Catalan translation
[lilypond.git] / input / regression / tablature-slurs-with-beams.ly
1 \version "2.17.20"
2
3 \header
4 {
5   texidoc = "
6 Slur placement in complementary tablatures should not be affected by
7 either automatic or manual beaming.
8 "
9 }
10
11 guitarSolo = {
12   \time 3/4
13   \set Timing.beamExceptions = #'((end . (((1 . 8) . (4 2)))))
14   <<
15     {bes'2( aes'8-. r)} \\
16     {r8 cis(-\tag #'beam [ b f'-\tag #'beam ]) <d f'>-. r}
17   >>
18   \bar "|."
19 }
20
21 guitarSolos = {
22   \tempo "Manual beams"
23   \guitarSolo
24   \tempo "Automatic beams"
25   \removeWithTag #'beam \guitarSolo
26 }
27
28 \score {
29   <<
30     \new StaffGroup <<
31       \new Staff { \clef "treble_8" \guitarSolos }
32       \new TabStaff \guitarSolos
33     >>
34     \new TabStaff \with { \tabFullNotation } \guitarSolos
35   >>
36 }