]> git.donarmstrong.com Git - lilypond.git/blob - Documentation/snippets/volta-multi-staff.ly
Local updates to LSR July 2012
[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 %% Translation of GIT committish: d5307870fe0ad47904daba73792c7e17b813737f
11   texidocfr = "
12 L'ajout du @code{Volta_engraver} à la portée appropriée permet de
13 répéter les indications de reprise qui normalement n'apparaissent que
14 sur la portée supérieure de la partition.
15
16 "
17   doctitlefr = "Volta multiportée"
18
19   lsrtags = "really-simple, staff-notation, repeats"
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