lilypond-user
[Top][All Lists]
Advanced

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

Re: how to remove system start bracket from the incipit


From: Mats Bengtsson
Subject: Re: how to remove system start bracket from the incipit
Date: Thu, 29 Jun 2006 09:51:22 +0200
User-agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.7.13) Gecko/20060417

First of all, the bracket is handled in the StaffGroup context, so you have to
do \override StaffGroup.SystemStartBracket #'transparent = ##t
However, it seems that this property is only read at the start of the score
so one you have made the bracket transparent, you can no more make it
visible again later in the score.

I'm not sure if this would classify as a pure bug or as a missing feature and
if there is some method to work around the problem, but I include a copy to
bug-lilypond anyway.

  /Mats

AmXlie Aubut wrote:

Hi everybody,

I am having a hard time trying to remove the system start bracket from the first system. I am transcribing mensural music and I don't want the incipit (written with mensural note-heads) to start with modern brackets! I tried to do it by using:
\once \override Staff.SystemStartBracket #'transparent = ##t
and, later:
\override Staff.SystemStartBracket #'transparent = ##f
but it doesn't work...

Any idea?  Thank you  :-)

Amélie Aubut


\version "2.8.5"

global = {

\set Score.skipBars = ##t
#(set-accidental-style 'forget)

% incipit
\key c \major
\time 2/2
\once \override Staff.SystemStartBracket #'transparent = ##t %%%%%%%%%%%%%%%%
\override NoteHead #'style = #'neomensural
\override Voice.Rest #'style = #'neomensural
\set Staff.printKeyCancellation = ##f
\cadenzaOn
\skip 1*1
\bar "||"
\skip 1*1
\bar ""

% main
\override Staff.BarLine #'transparent = ##f
\cadenzaOff % turn bar lines on again
\once \override Staff.Clef #'full-size-change = ##t
\set Staff.forceClef = ##t
\key c \major
\time 2/2
\override Voice.NoteHead #'style = #'default
\override Voice.Rest #'style = #'default
\skip 1*1
\set Staff.printKeyCancellation = ##t
\set Staff.forceClef = ##f
\override Staff.SystemStartBracket #'transparent = ##f  %%%%%%%%%%%%%%%%
}

discantusNotes = \relative g' {

  \set Staff.instrument = "SUPERIUS"

  % incipit
  \clef soprano    g4 c c b8\( c\) \noBeam     \skip 1*1

  % main
\clef "treble" \cadenzaOn g4 c c b8 c d4 c4.\( b8\) \noBeam a8 b \cadenzaOff \bar "|" \break

  \cadenzaOn   c4 b b a8 g a4 g2 \cadenzaOff  \bar "|"

\cadenzaOn c4 b a g8 a bes4 a4.\( g8\) fis4 \cadenzaOff \bar "|" \pageBreak
  }

discantusLyrics = \lyricmode {
_ _ _ _ _
\set stanza = "1. "
Des sus l'her -- be __ _ fleu -- ri -- _ e,   __ _
De -- dans un verd __ _ bo -- quet,
Ro -- bi -- net et __ _ Ma -- ri -- _ e
}

altusNotes = \relative g' {

  \set Staff.instrument = "CONTRATENOR"

  % incipit
  \clef alto   d4 f e g    \skip 1*1

  % main
\clef "treble" \cadenzaOn d4 f e g g e2 f4 \cadenzaOff \bar "|"

  \cadenzaOn   e8 f g4 g fis8 g fis!4 d2   \cadenzaOff   \bar "|"

  \cadenzaOn   a'4 g \set suggestAccidentals = ##t   f!
\set suggestAccidentals = ##f e8 f g4 fis4.\( e8\) d4 \cadenzaOff \bar "|"
}

altusLyrics = \lyricmode {
_ _ _ _
\set stanza = "1. "
Des sus l'her -- be fleu -- ri -- e,
De -- _ dans un verd __ _ bo -- quet,
Ro -- bi -- net et __ _ Ma -- ri -- _ e
}

\score {
 \new  StaffGroup <<
 \new Voice =
   "discantusNotes" << \global \discantusNotes >>
 \new Lyrics =
    "discantusLyrics" \lyricsto discantusNotes { \discantusLyrics }
 \new Voice =
    "altusNotes" << \global \altusNotes >>
 \new Lyrics =
    "altusLyrics" \lyricsto altusNotes { \altusLyrics }
 >>

\layout {
indent = 4.0\cm         }

}




_______________________________________________
lilypond-user mailing list
address@hidden
http://lists.gnu.org/mailman/listinfo/lilypond-user


--
=============================================
        Mats Bengtsson
        Signal Processing
        Signals, Sensors and Systems
        Royal Institute of Technology
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463                         
       Fax:   (+46) 8 790 7260
        Email: address@hidden
        WWW: http://www.s3.kth.se/~mabe
=============================================





reply via email to

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