Hi! Do you think it is possible to have two #(set-global-staff-size ) in a 
single file: one 
for "multi-instruments" (18) and one for one part (24)?
Thanks!

\version "2.19.2"
\language "english"
#(set-global-staff-size 18)
\header {
  title = "Titolo"
}

\paper {
  #(set-paper-size "a4")
}

global = {
  \key c \major
  \time 4/4
  \tempo 4=100
}

violin = \relative c'' {
  \global
  % Qui segue la musica.
  c1|
  c|c|c|c|c|c|c|c|c|c|
}

viola = \relative c' {
  \global
  % Qui segue la musica.
  c1|
  c|c|c|c|c|c|c|c|c|c|
}

cello = \relative c {
  \global
  % Qui segue la musica.
  c1|
  c|c|c|c|c|c|c|c|c|c|
}

contrabass = \relative c {
  \global
  % Qui segue la musica.
  c1|
  c|c|c|c|c|c|c|c|c|c|
}

violinPart = \new Staff \with {
  instrumentName = "Vl."
  midiInstrument = "violin"
} \violin

violaPart = \new Staff \with {
  instrumentName = "V.la"
  midiInstrument = "viola"
} { \clef alto \viola }

celloPart = \new Staff \with {
  instrumentName = "Vlc."
  midiInstrument = "cello"
} { \clef bass \cello }

contrabassPart = \new Staff \with {
  instrumentName = "Cb."
  midiInstrument = "contrabass"
} { \clef bass \contrabass }

\score {\new StaffGroup
  <<
    \violinPart
    \violaPart
    \celloPart
    \contrabassPart
  >>
  \layout { }
  \midi { }
}
\book {
  \bookOutputSuffix "Violino I"
  \score {
    \new StaffGroup
    <<
      \violinPart
    >>
    \layout { }
    \midi {
      \context {
        \Score
        tempoWholesPerMinute = #(ly:make-moment 66 4)
      }
    }
    \header {
      title = \markup \column {"Titolo"}
      instrument = \markup \column \normal-text {"Violino I" " "}
    }
  }
}-- 
oiram/bin/selom
Da ognuno secondo le proprie capacità ad ognuno secondo i propri bisogni.
MIB-kernellinux-tester
http://mariomoles.altervista.org/[1]
Linux[2] 
MIB[3] Lilypond[4] Frescobaldi[5] Rosegarden[6] 

--------
[1] http://mariomoles.altervista.org/
[2] https://www.kernel.org/
[3] http://mib.pianetalinux.org/blog/
[4] http://lilypond.org/
[5] http://www.frescobaldi.org/
[6] http://www.rosegardenmusic.com
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to