Am 09.03.2017 um 09:59 schrieb Bernhard Kleine:
> The problem is with the spacing of the grace notes. Being not a
> programmer I do not find enough information in the 2.9.56 manual to do
> it by myself: The spacing of parentheses to the graces and the distance
> of the grace notes to the notes they are gracing seem not large enough.
> Thanks for your patience, Bernhard

Why don’t you use regular notes instead of grace notes? Just change the
\partial 4 to \partial 4., delete all \grace commands, and put empty
syllables in the lyrics (see code below). And then parenthesize only one
voice in every staff. font-size changes the size of the parentheses,
padding pushes the parentheses further away from the note head (to avoid
collisions with flags) and extra-offset moves them to the right (because
there is no flag at the left side) and down (to get them around tenor
*and* bass).

I used \magnifyMusic #(magstep -3) to make the notes smaller. You could
also use \once \teeny (or similar) but this doesn’t change the stem
lengths and IMO small notes with long stems look weird.

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
soprano = \relative c' {
  \once \override ParenthesesItem.font-size = 3
  \once \override ParenthesesItem.padding = 0.5
  \once \override ParenthesesItem.extra-offset = #'(0.25 . 0)
  \global
  \magnifyMusic #(magstep -3) \parenthesize f8 f8 g |
  a2~ a8 a  \bar "|."
}
alto    = \relative c' {
  \global
  \magnifyMusic #(magstep -3) f8 f8 f |
}
tenor   = \relative c' {
  \once \override ParenthesesItem.font-size = 6
  \once \override ParenthesesItem.padding = 0.5
  \once \override ParenthesesItem.extra-offset = #'(0.25 . -0.5)
  \global
  \magnifyMusic #(magstep -3) \parenthesize a8 a8 b |
}
bass    = \relative c  {
  \global
  \magnifyMusic #(magstep -3) f8 f8 f |
  f2~ f8 f
}

verseOne = \lyricmode {
  \set stanza = "1." _ Lie -- be ist die Macht des Him -- mels.
}
verseTwo = \lyricmode {
  \set stanza = "2." _ Fehlt die
}
verseThree = \lyricmode {
  \set stanza = "3."  Die Lieb' ist
}
_______________________________________________
lilypond-user mailing list
lilypond-user@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to