Actualización importante. Lección cero.
[lilypond-ejercicios.git] / trucha / estructura.ly
blobf8fd96d60ee8e8cf4f9650be4dd0a41dcd398239
1 violin = { c' }
2 viola = { c' }
3 cello = { c' }
4 contrabajo = { c' }
5 pianoManoDerecha = { c' }
6 pianoManoIzquierda = { c' }
9 \include "violin.ly"
10 \include "viola.ly"
11 \include "cello.ly"
12 \include "contrabajo.ly"
13 \include "piano.ly"
16 \new Staff \with {
17 fontSize = #-3
18 \override StaffSymbol #'staff-space = #(magstep -3)
19 } { \violin }
20 \new Staff \with {
21 fontSize = #-3
22 \override StaffSymbol #'staff-space = #(magstep -3)
23 }{ \viola }
24 \new Staff \with {
25 fontSize = #-3
26 \override StaffSymbol #'staff-space = #(magstep -3)
27 }{ << \cello \\ \contrabajo >> }
28 \new PianoStaff <<
29 \new Staff { \pianoManoDerecha }
30 \new Staff { \pianoManoIzquierda }