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

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

Re: Hampes trop longues avec NullVoice


From: Pierre Perol-Schneider
Subject: Re: Hampes trop longues avec NullVoice
Date: Wed, 31 Oct 2018 01:33:41 +0100

... Bon...
On va faire simple, que donne :

\version "2.18.2"

notes = \relative c' { c8 d e4( e') f8 g }

\score {
  \new ChoirStaff <<
    \new Staff <<
      \new Voice { \notes }
    >>
    \new Staff <<
      \new Voice { \notes }
      \new NullVoice = "nullevoix" { \notes }
      \new Lyrics \lyricsto "nullevoix" { c d "2e" __ f g }
    >>
    \new Staff <<
      \new Voice { \notes }
      \new Voice = "sansvoix" {
        \override NoteColumn.ignore-collision = ##t
        \hideNotes
        \notes
      }
      \new Lyrics \lyricsto "sansvoix" { c d "2e" __ f g }
    >>
  >>
  \layout { }
}

Pierre

Le mar. 30 oct. 2018 à 12:49, Pierre Perol-Schneider <address@hidden> a écrit :
Corrections :

\version "2.18.2"

notes = \relative c' { c8 d e4 e' f8 g }

\score {
  \new ChoirStaff <<
    \new Staff <<
      \new Voice { \notes }
    >>
    \new Staff <<
      \new Voice { \notes }
      \new SansVoix = "sansvoix" { \notes }
      \new Lyrics \lyricsto "sansvoix" { c d e e f g }
    >>
  >>
  \layout {
    \context {
      \name SansVoix
      \type "Engraver_group"
      \alias Voice
      \override NoteHead.no-ledgers = ##t
      \override NoteHead.X-extent = #'()
      \override NoteHead.stencil = ##f
      \override Beam.stencil = ##f
      \override NoteHead.stencil = ##f
      \override Accidental.stencil = ##f
      \override AccidentalCautionary.stencil = ##f
      \override Slur.stencil = ##f
      \override Tie.stencil = ##f
      squashedPosition = 0
    }
    \context {
      \Staff
      \accepts "SansVoix"
    }
  }

Pierre

Le mar. 30 oct. 2018 à 12:34, Pierre Perol-Schneider <address@hidden> a écrit :
Autre tentative :

%%%%%
\version "2.18.2"

notes = \relative c' { c8 d e4 e' f8 g }

\score {
  \new ChoirStaff <<
    \new Staff <<
      \new Voice { \notes }
    >>
    \new Staff <<
      \new Voice { \notes }
      \new SansVoix = "sansvoix" { \notes }
      \new Lyrics \lyricsto "sansvoix" { c d e e f g }
    >>
  >>
  \layout {
    \context {
      \name SansVoix
      \type "Engraver_group"
      \alias Voice
      \override NoteHead.no-ledgers = ##t
      \override NoteHead.X-extent = #'()
      \override NoteHead.stencil = ##f
      \override Beam.stencil = ##f
      \override Slur.stencil = ##f
      \override Tie.stencil = ##f
      squashedPosition = 0
    }
    \context {
      \Staff
      \accepts "SansVoix"
    }
  }
}
%%%%

Cdt,
Pierre

Le mar. 30 oct. 2018 à 10:56, Olivier Miakinen <address@hidden> a écrit :
Bonjour Pierre,

Ça me donne des erreurs sur la partition complète (de 26 pages en une
dizaine de fichiers source... [...]
 

reply via email to

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