bracket and staff names

View: New views
7 Messages — Rating Filter:   Alert me  

bracket and staff names

by Erik Appeldoorn :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Some parts of this message have been removed. Learn more about Nabble's security policy.

I have a snipped of code that doesn’t quite come out is expected / wanted. The score is a choir SATB with organ (two staffs)

 

I would like the normal bracket to be in front of the SATB staffs. It now extends to the last staf.

 

2nd I’m missing the names of the voices before the staves although I use the \set Staff.instrumentName.

 

Any other hints also very welcome.

 

 

\score {

\new ChoirStaff

<< 

{

\new Staff = "Sopraan" \sop

\set Staff.instrumentName = #"Sopraan"

}

{

\new Staff = "Alt" \alt

\set Staff.instrumentName = #"Alt"

}

{

\new Staff = "Tenor" \ten

\set Staff.instrumentName = #"Tenor"

}

{

\new Staff = "Bas" \bas

\set Staff.instrumentName = #"Bas"

}

 

\new PianoStaff <<

   \new Staff = "ManualOne" <<

     \new Voice { \rh }

   >>

   \new Staff = "ManualTwo" <<

     \new Voice { \lh }

   >>

>> 

>> 

}

 

Hou je goed / Keep well,

 

Erik

 


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

Re: bracket and staff names

by Mats Bengtsson-4 :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message



Erik Appeldoorn wrote:
>
> I have a snipped of code that doesn’t quite come out is expected /
> wanted. The score is a choir SATB with organ (two staffs)
>
> I would like the normal bracket to be in front of the SATB staffs. It
> now extends to the last staf.
>
Yes, since you include all the staves within the ChoirStaff. I think you
rather want to follow the structure used in the Learning Manual template
SATB + piano:
\score{
<<
\new ChoirStaff <<
% Here comes the two staves for the SATB ...
 >>
\new PianoStaff <<
% Here comes the two staves for the organ
 >>
 >>
}

I would recommend to use indentation as I did above and as is done in
the examples in the manual, to make it easier to see the overall
hierarchical structure of the score.

/Mats

>
> 2^nd I’m missing the names of the voices before the staves although I
> use the \set Staff.instrumentName.
>
> Any other hints also very welcome.
>
> \score {
>
> \new ChoirStaff
>
> <<
>
> {
>
> \new Staff = "Sopraan" \sop
>
> \set Staff.instrumentName = #"Sopraan"
>
> }
>
> {
>
> \new Staff = "Alt" \alt
>
> \set Staff.instrumentName = #"Alt"
>
> }
>
> {
>
> \new Staff = "Tenor" \ten
>
> \set Staff.instrumentName = #"Tenor"
>
> }
>
> {
>
> \new Staff = "Bas" \bas
>
> \set Staff.instrumentName = #"Bas"
>
> }
>
> \new PianoStaff <<
>
> \new Staff = "ManualOne" <<
>
> \new Voice { \rh }
>
> >>
>
> \new Staff = "ManualTwo" <<
>
> \new Voice { \lh }
>
> >>
>
> >>
>
> >>
>
> }
>
> //Hou je goed / Keep well,//
>
> //Erik//
>
> ------------------------------------------------------------------------
>
> _______________________________________________
> lilypond-user mailing list
> lilypond-user@...
> http://lists.gnu.org/mailman/listinfo/lilypond-user
>  

--
=============================================
        Mats Bengtsson
        Signal Processing
        School of Electrical Engineering
        Royal Institute of Technology (KTH)
        SE-100 44  STOCKHOLM
        Sweden
        Phone: (+46) 8 790 8463
        Fax:   (+46) 8 790 7260
        Email: mats.bengtsson@...
        WWW: http://www.s3.kth.se/~mabe
=============================================



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

Re: bracket and staff names

by -Eluze :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Erik Appeldoorn wrote:
2nd I'm missing the names of the voices before the staves although I use the
\set Staff.instrumentName.
if yout set the instrument names *before* the notes they will be displayed:

      \new Staff = "Sopraan" {
        \set Staff.instrumentName = #"Sopraan"
        \sop
      }

RE: bracket and staff names

by Erik Appeldoorn :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Mats,

Bracket problem solved
I just miscounted the place for the closing >>
It now looks slightly different and brackets are in place as I want them.
But still no names before the staffs

Thanks, Erik

> -----Original Message-----
> From: Mats Bengtsson [mailto:mats.bengtsson@...]
> Sent: vrijdag 30 oktober 2009 11:00
> To: Erik Appeldoorn
> Cc: lilypond-user@...
> Subject: Re: bracket and staff names
>
>
>
> Erik Appeldoorn wrote:
> >
> > I have a snipped of code that doesn't quite come out is expected /
> > wanted. The score is a choir SATB with organ (two staffs)
> >
> > I would like the normal bracket to be in front of the SATB staffs. It
> > now extends to the last staf.
> >
> Yes, since you include all the staves within the ChoirStaff. I think you
> rather want to follow the structure used in the Learning Manual template
> SATB + piano:
> \score{
> <<
> \new ChoirStaff <<
> % Here comes the two staves for the SATB ...
>  >>
> \new PianoStaff <<
> % Here comes the two staves for the organ
>  >>
>  >>
> }
>
> I would recommend to use indentation as I did above and as is done in
> the examples in the manual, to make it easier to see the overall
> hierarchical structure of the score.
>
> /Mats




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

RE: bracket and staff names

by Erik Appeldoorn :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Eluze
Thanks for the explanation, but solving one problem creates a new one.

The names of the staves now are correct. But the lyrics belonging to the
notes are completely misplaced. Lyrics of voices now get collected all in
one go below the bass staff.

More to learn I guess. Here is how it is looking now.


\score {
<<
\new ChoirStaff

<<
        \new Staff = "Sopraan" {
        \set Staff.instrumentName = #"Sopraan"
        \sop
        }

        \new Staff = "Alt" {
        \set Staff.instrumentName = #"Alt"
        \alt
        }

        \new Staff = "Tenor" {
        \set Staff.instrumentName = #"Tenor"
        \ten
        }

        \new Staff = "Bas" {
        \set Staff.instrumentName = #"Bas"
        \bas
        }
>>

\new PianoStaff <<
   \new Staff = "ManualOne" <<
     \new Voice { \rh }
   >>
   \new Staff = "ManualTwo" <<
     \new Voice { \lh }
   >>
>>
>>
}

> -----Original Message-----
> From: lilypond-user-bounces+ursus.kirk=ziggo.nl@... [mailto:lilypond-
> user-bounces+ursus.kirk=ziggo.nl@...] On Behalf Of -Eluze
> Sent: vrijdag 30 oktober 2009 11:20
> To: lilypond-user@...
> Subject: Re: bracket and staff names
>
>
>
> Erik Appeldoorn wrote:
> >
> >
> > 2nd I'm missing the names of the voices before the staves although I use
> > the
> > \set Staff.instrumentName.
> >
> if yout set the instrument names *before* the notes they will be
> displayed:
>
>       \new Staff = "Sopraan" {
>         \set Staff.instrumentName = #"Sopraan"
>         \sop
>       }
>
> --
> View this message in context: http://old.nabble.com/bracket-and-staff-
> names-tp26126880p26127716.html
> Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.
>
>
>
> _______________________________________________
> lilypond-user mailing list
> lilypond-user@...
> http://lists.gnu.org/mailman/listinfo/lilypond-user



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

RE: bracket and staff names

by Erik Appeldoorn :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Thanks again all. I found the problem

\new Staff = "Sopraan" {
  \set Staff.instrumentName = #"Sopraan"
  \sop
  }

Should be

\new Staff = "Sopraan" <<
  \set Staff.instrumentName = #"Sopraan"
        \sop
  >>

And all looks well now. Probably have more questions later, but for now I am
content.....

Keep well, Erik



> -----Original Message-----
> From: lilypond-user-bounces+ursus.kirk=ziggo.nl@... [mailto:lilypond-
> user-bounces+ursus.kirk=ziggo.nl@...] On Behalf Of Erik Appeldoorn
> Sent: vrijdag 30 oktober 2009 11:45
> To: '-Eluze'
> Cc: lilypond-user@...
> Subject: RE: bracket and staff names
>
> Eluze
> Thanks for the explanation, but solving one problem creates a new one.
>
> The names of the staves now are correct. But the lyrics belonging to the
> notes are completely misplaced. Lyrics of voices now get collected all in
> one go below the bass staff.
>
> More to learn I guess. Here is how it is looking now.
>
>
> \score {
> <<
> \new ChoirStaff
>
> <<
> \new Staff = "Sopraan" {
> \set Staff.instrumentName = #"Sopraan"
> \sop
> }
>



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

RE: bracket and staff names

by -Eluze :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Erik Appeldoorn wrote:
Thanks again all. I found the problem

\new Staff = "Sopraan" {
  \set Staff.instrumentName = #"Sopraan"
  \sop
  }

Should be

\new Staff = "Sopraan" <<
  \set Staff.instrumentName = #"Sopraan"
        \sop
  >>

And all looks well now.
this highly depends on what you have written in \sop!