]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/tuplet-bracket-and-change-staff.ly
Issue 5167/6: Changes: show \markup xxx = ... \etc assignments
[lilypond.git] / Documentation / snippets / tuplet-bracket-and-change-staff.ly
1 %% DO NOT EDIT this file manually; it is automatically
2 %% generated from LSR http://lsr.di.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.18.0"
8
9 \header {
10   lsrtags = "tweaks-and-overrides"
11
12   texidoc = "
13 This snippet shows how to set a tuplet starting in a lower staff and
14 finishing in the upper one.
15
16 "
17   doctitle = "Tuplet bracket and change staff"
18 } % begin verbatim
19
20 aigues = \relative c' {
21   \time 6/8
22   s4.
23   \stemDown
24   c16[ bes' e]
25   \stemUp
26   g c e
27   \stemDown
28   g8
29 }
30
31 basses = \relative c {
32   \time 3/4
33   \clef F
34   \tweak positions #'(4.5 . 9.5)
35   \tweak edge-height #'(1 . -1)
36   \tuplet 7/6 {
37     c16[ bes' e]
38     \change Staff = md
39     \stemUp
40     g[ c e g]
41   }
42   s4.s8
43 }
44
45 \new PianoStaff
46 \with { \omit TimeSignature }
47 <<
48   \new Staff = md \aigues
49   \new Staff = mg \basses
50 >>