]> git.donarmstrong.com Git - lilypond.git/blob - input/regression/tablature-slurs-with-beams.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / input / regression / tablature-slurs-with-beams.ly
1 \version "2.19.0"
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 =
14     \beamExceptions { 8[ 8 8 8] 8[ 8] }
15   <<
16     {bes'2( aes'8-. r)} \\
17     {r8 cis(-\tag #'beam [ b f'-\tag #'beam ]) <d f'>-. r}
18   >>
19   \bar "|."
20 }
21
22 guitarSolos = {
23   \tempo "Manual beams"
24   \guitarSolo
25   \tempo "Automatic beams"
26   \removeWithTag #'beam \guitarSolo
27 }
28
29 \score {
30   <<
31     \new StaffGroup <<
32       \new Staff { \clef "treble_8" \guitarSolos }
33       \new TabStaff \guitarSolos
34     >>
35     \new TabStaff \with { \tabFullNotation } \guitarSolos
36   >>
37 }