lilypond-user-fr
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

problème portée vide


From: moebius
Subject: problème portée vide
Date: Tue, 17 Oct 2017 18:06:09 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.4.0

Bonjour,

J'essaye de créer un modèle avec portées vides pour quintette à cordes.

J'ai deux problèmes :

Les noms abrégés des instruments sont «mangés» par la marge gauche.

Je n'arrive pas à enlever les barres de mesure sans, du même coup, que cela n'enlève également les clefs sur les systèmes suivant le premier système. Pour obtenir 3 portées j'ai introduit des sauts de page, uniquement pour les violons 1.

Une aide serait bienvenue...

 voici mon code :

\version "2.18.2"
\header {

 title = " "
 subtitle = " "
 composer = " "
 opus = " "
 tagline = ##f
}

\layout {

    \context {
      \Staff
      \remove "Time_signature_engraver"
      \remove "Bar_engraver"
    }
    \context {
      \Score
      \remove "Bar_number_engraver"


    }

  }


\score {
  <<
    \new StaffGroup = strings <<
      \context Staff = violiniI  \with {

        instrumentName = \markup {
          \center-column { "Violini I"  }
        }
       shortInstrumentName = "Vl.I"

      }
       {\repeat unfold 3 { s1 \break }
       \pageBreak
       \repeat unfold 3 { s1 \break }
       \pageBreak
       }

      \context Staff = violiniII \with {

        instrumentName = \markup {
          \center-column {"Violini II"  }
        }

shortInstrumentName = "Vl.II"

  }




     {\repeat unfold 6 { s1 \break } }

      \context Staff = viole \with {

        instrumentName = \markup {
          \center-column { "Viole"  }
        }
        shortInstrumentName = "Vla."
      } << \clef "alto"
      {\repeat unfold 6 { s1 \break } }
      >>
      \context Staff = violoncelli \with {
        midiInstrument = #"cello"
        instrumentName = \markup {
          \center-column { "Violoncelli"  }
        }
        shortInstrumentName = "Vc."
      } <<
        \clef "bass" %    \remove "Bar_engraver"
        {\repeat unfold 6 { s1 \break } }
      >>

        \context Staff = contrabassi \with {
        midiInstrument = #"contrabass"
        instrumentName = #"Contrabassi"
        shortInstrumentName = "Cb."

        } <<
          \clef "bass"
           {\repeat unfold 6 { s1 \break } }
        >>
    >>
>>



}




reply via email to

[Prev in Thread] Current Thread [Next in Thread]