Re: One staff, two voices, two lyrics --> one above, one below

2017-05-09 Thread Gregor Buchholz

Hello,

you will have to give your Staff a name and use it as reference for 
alignAboveContext:


\score {
 <<
   \new Staff = "bass" <<
 \new Voice = "bassOne" <<
   \bassOneNotes
 >>
 \new Lyrics \with { alignAboveContext = "bass" }
 \lyricsto "bassOne" \bassOneWords

 \new Voice = "bassTwo" <<
   \bassTwoNotes
 >>
 \new Lyrics \lyricsto "bassTwo" \bassTwoWords
   >>
 >>
}

Best regards,
Gregor.

-- Originalnachricht --
Von: "Wilhelm Kleinoeder" 
An: lilypond-user@gnu.org
Gesendet: 09.05.2017 16:23:39
Betreff: One staff, two voices, two lyrics --> one above, one below


Hello.

I have one staff, two voices and two lyrics. The bassOnewords should be 
placed above and the bassTwowords below the staff. But my solution 
places both words below the score.


\version "2.18.2"

...

\score {
  <<
\new Staff <<
 \new Voice = "bassOne" <<
\bassOneNotes
>>
  \new Lyrics \with { alignAboveContext = "staff" }
  \lyricsto "bassOne" \bassOneWords

 \new Voice = "bassTwo" <<
\bassTwoNotes
>>
  \new Lyrics \lyricsto "bassTwo" \bassTwoWords
>>
  >>
  }


Any help?

Wilhelm

--
Meine Art zu sehen: meine-art-zu-sehen.de
Sichere E-Mail: pki.w14r.de___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Re[2]: Repeat sign in stanzas below score

2017-04-24 Thread Gregor Buchholz

Am 24.04.2017 um 19:42 schrieb Simon Albrecht:


I don’t know if there is anything easier than this:
...

Thank you very much, it works like a charm!


Maybe you’ll want to scale it.
I do! And I did it by adding a "#(layout-set-staff-size 9)" to your 
\layout section and a "\override StaffSymbol.staff-space = #0.6" to the 
\new Staff \with - Section. It needs a little experimenting for the 
repeat signs' appearance to match the text font's dimensions.


Thanks again,
Gregor.


___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user


Repeat sign in stanzas below score

2017-04-24 Thread Gregor Buchholz

Hello,

I added additional stanzas below a score as described in the doc 
(http://lilypond.org/doc/v2.18/Documentation/notation/stanzas#printing-stanzas-at-the-end-in-multiple-columns).


Now I want to print repeat signs at the beginning and at the end of a 
line. Of course, I could use the pipe symbol (vertical bar, |) and a 
colon (punctuation mark, :) in order for the reader to sing the 
respective line twice, like:


\score {
...
}

\markup {
 \fill-line {
  ...
   \column {
\line { \bold "2."
 \column {
  "Land of hope and glory, mother of the free"
  ...
  "|: God, who made thee mighty, make thee mightier yet :|"
 }
   }
  }
 }
}

But it would be much nicer to print a "real" repeat sign. Obviously, I 
cannot use \bar "|:" in the text. Is there a way to get some nice repeat 
signs printed in the text?


Remarks:
- I could not find a repeat sign here: 
http://lilypond.org/doc/v2.18/Documentation/notation/the-feta-font
- I could not find a snippet in the LSR with any combination of 
"stanza/s" | "markup" | "text" + "repeat"
- I found some interesting things at 
http://lilypond.org/doc/v2.18/Documentation/snippets/text but nothing 
that helped me here


Best,
Gregor.___
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user