Lilypond: come fare per ...

                   

Introduzione

Nascondere

nascondere pentagramma
\score { << \new Voice { \stopStaff c'1  } >> }

[image of music]

nascondere tutto pentagramma
\layout {
   \context { \Staff \RemoveEmptyStaves \override VerticalAxisGroup.remove-first = ##t } }
   }
nascondere tempo
\score { << \new Voice {  c'1   c'2  c'4  } >> }
        \layout { \context { \Staff \remove "Time_signature_engraver" } }

[image of music]

nascondere chiave
\score { << \new Voice {  c'1  c'2   c'4  } >> }
        \layout { \context { \Staff \remove "Clef_engraver" } }

[image of music]

nascondere barre
\score { << \new Voice {  c'1  c'2  c'4   } >> }
        \layout { \context { \Staff \remove "Bar_engraver" } }

[image of music]

Ripetere da ... a ...

i segni
      \score { << \new Voice {  c'1
         \mark \markup { \small \musicglyph #"scripts.segno" }
         c'2   c'4  } >> }
        \layout { \context { \Staff \remove "Clef_engraver" } }
      

[image of music]

      \score { << \new Voice {  c'1
      \mark \markup { \small \musicglyph #"scripts.coda" }
      c'2   c'4  } >> }
      

[image of music]