Dies ist das Archiv des alten Forums (bis März 2017). Das aktuelle Forum ist unter https://lilypondforum.de zu finden. This is the archive of the old forum (until March 2017). You can find the current forum at https://lilypondforum.de.
\version "2.19.37"musix = \relative c' { c d e f g2 g }lyrix = \lyricmode { Al- le mei- ne Ent- chen }\score { \new Staff { \musix } \addlyrics { \markup \italic \bold \lyrix } }
\version "2.18.2"musix = \relative c' { c d e f g2 g }lyrixOne = \lyricmode { \markup \italic { Al -- le mei -- ne Ent -- chen }}lyrixTwo = \lyricmode { \markup \italic { Al } -- \markup \italic {le } \markup \italic {mei } -- \markup \italic {ne } \markup \italic {Ent } -- \markup \italic {chen }}\score { << \new Staff { \new Voice = "melody" \musix } \new Lyrics \lyricsto melody \lyrixOne >>}\score { << \new Staff { \new Voice = "melody" \musix } \new Lyrics \lyricsto melody \lyrixTwo >>}
\version "2.19.37"musix = \relative c' { c d e f g2 g }lyrix = \lyricmode { %% maybe add \override LyricHyphen.minimum-distance = 1 %% better to use real LyricHyphen Al -- le mei -- ne Ent -- chen }\score { \new Staff { \musix } %% new feature since 2.19.26: \addlyrics { \markupMap text \markup \italic \bold \etc \lyrix } %% the common way: \addlyrics { \override LyricText.font-shape = #'italic \override LyricText.font-series = #'bold \lyrix } %% also possible with newer versions: \addlyrics \with { \override LyricText.font-shape = #'italic \override LyricText.font-series = #'bold } { \lyrix }}