]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/volta-multi-staff.ly
4323cc16170c35177079fc76d8ee5f9ffc1a2c06
[lilypond.git] / Documentation / snippets / volta-multi-staff.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 = "really-simple, staff-notation, repeats"
11
12 %% Translation of GIT committish: d5307870fe0ad47904daba73792c7e17b813737f
13   texidocfr = "
14 L'ajout du @code{Volta_engraver} à la portée appropriée permet de
15 répéter les indications de reprise qui normalement n'apparaissent que
16 sur la portée supérieure de la partition.
17
18 "
19   doctitlefr = "Volta multiportée"
20
21   texidoc = "
22 By adding the @code{Volta_engraver} to the relevant staff, volte can be
23 put over staves other than the topmost one in a score.
24
25 "
26   doctitle = "Volta multi staff"
27 } % begin verbatim
28
29
30 voltaMusic = \relative c'' {
31   \repeat volta 2 {
32     c1
33   }
34   \alternative {
35     d1
36     e1
37   }
38 }
39
40 <<
41   \new StaffGroup <<
42     \new Staff \voltaMusic
43     \new Staff \voltaMusic
44   >>
45   \new StaffGroup <<
46     \new Staff \with { \consists "Volta_engraver" }
47       \voltaMusic
48     \new Staff \voltaMusic
49   >>
50 >>
51