]> git.donarmstrong.com Git - lilypond.git/blob - input/lsr/creating-cross-staff-arpeggios-in-other-contexts.ly
Add support for max-systems-per-page.
[lilypond.git] / input / lsr / creating-cross-staff-arpeggios-in-other-contexts.ly
1 %% Do not edit this file; it is auto-generated from LSR http://lsr.dsi.unimi.it
2 %% This file is in the public domain.
3 \version "2.11.62"
4
5 \header {
6   lsrtags = "expressive-marks"
7
8   texidoces = "
9 Se pueden crear arpegios que se cruzan entre pentagramas dentro de
10 contextos distintos a @code{PianoStaff} si se incluye el grabador
11 @code{Span_arpeggio_engraver} en el contexto de @code{Score}.
12
13 "
14   doctitlees = "Creación de arpegios que se cruzan entre pentagramas dentro de otros contextos"
15
16   texidoc = "
17 Cross-staff arpeggios can be created in contexts other than
18 @code{PianoStaff} if the @code{Span_arpeggio_engraver} is included in
19 the @code{Score} context. 
20
21 "
22   doctitle = "Creating cross-staff arpeggios in other contexts"
23 } % begin verbatim
24
25 \score {
26   \new StaffGroup {
27     \set Score.connectArpeggios = ##t
28     <<
29       \new Voice \relative c' {
30         <c e>2\arpeggio
31         <d f>2\arpeggio
32         <c e>1\arpeggio
33       }
34       \new Voice  \relative c {
35         \clef bass
36          <c g'>2\arpeggio
37          <b g'>2\arpeggio
38          <c g'>1\arpeggio
39       }
40     >>
41   }
42   \layout {
43     \context {
44       \Score
45       \consists "Span_arpeggio_engraver"
46     }
47   }
48 }