Am 19.11.2012 22:57, schrieb Stjepan Horvat:
> Thanks man..thats exactly what i was looking for..!
> 
> 
> On Mon, Nov 19, 2012 at 9:33 PM, Thomas Morley
> <thomasmorle...@googlemail.com <mailto:thomasmorle...@googlemail.com>>
> wrote:
> 
>     2012/11/19 Stjepan Horvat <zvanste...@gmail.com
>     <mailto:zvanste...@gmail.com>>:
>     > hi guys..
>     > is there a way to get extra spacing between lyrics (verses).
>     > i would want to make extra space so a person could translate a
>     text (verse)
>     > by hand. i'm using the \addlyrics command.
> 
>     Hi Stjepan,
> 
>     how about
> 
>     \version "2.16.0"
> 
>     \layout {
>             \context {
>                     \Lyrics
>                     \override VerticalAxisGroup
>     #'nonstaff-nonstaff-spacing =
>                            #'((basic-distance . 0)
>                               (minimum-distance . 5)  ;; <================
>     more lower space
>                               (padding . 0.2)
>                               (stretchability . 0))
>             }
>     }
> 
>     \relative c' {
>             \repeat unfold 20 { c4 d e f }
>             g1
>     }
>     \addlyrics {
>             \repeat unfold 20 { foo -- foo -- foo -- foo }
>             foo
>     }
>     \addlyrics {
>             \repeat unfold 20 { bar -- bar -- bar -- bar }
>             bar
>     }
>     \addlyrics {
>             \repeat unfold 20 { bla -- bla -- bla -- bla }
>             bla
>     }
> 
> 
>     Adjust minimum-distance to fit your needs.
> 
> 
>     HTH,
>       Harm

Just because I wanted to test the new syntax introduced in 2.17:
It really works :) I am amazed by the short input code, just one line in
the layout block.

\version "2.17.6"
\layout {
        \override Lyrics.VerticalAxisGroup.
nonstaff-nonstaff-spacing.minimum-distance = #5

}

\relative c' {
        \repeat unfold 20 { c4 d e f }
        g1
}
\addlyrics {
        \repeat unfold 20 { foo -- foo -- foo -- foo }
        foo
}
\addlyrics {
        \repeat unfold 20 { bar -- bar -- bar -- bar }
        bar
}
\addlyrics {
        \repeat unfold 20 { bla -- bla -- bla -- bla }
        bla
}

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

Reply via email to