Re: Problem with linebreaks and musicglyphs (lyuser: message 1 of 20)

2019-04-03 Thread Markus Grunwald
Hello Schneidy and noeck,

Thanks, both answers are very helpful and work beautifully :)

cu
-- 
Markus Grunwald


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


Re: Problem with linebreaks and musicglyphs

2019-04-03 Thread Noeck
Dear Markus,

there are probably other solutions that center the coda glyphs and the
dash more elegantly, but this works. \line combines several markup-parts
into one line:

\relative c''
{
  c c ^\markup{
\center-column {
  "D.S." "Nach der 2. Str."
  \line {
\musicglyph #"scripts.coda"
\lower #0.47 "-"
\musicglyph #"scripts.coda"
  }
}
  } c
}

Cheers,
Joram

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


Re: Problem with linebreaks and musicglyphs

2019-04-03 Thread Schneidy
Hi Markus,

How about:

\version "2.18.2"

\relative c''
{
c c ^\markup
  \override #'(baseline-skip . 2) % <= possibly
  \center-column {
"D.S." "Nach der 2. Str." 
\line\vcenter { \musicglyph #"scripts.coda" - \musicglyph
#"scripts.coda" }
  }
  c
}

Cheers,
Pierre



--
Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

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


Problem with linebreaks and musicglyphs

2019-04-03 Thread Markus Grunwald
Hello,

Consider this example:

\version "2.18.2"

\relative c''
{
c c ^\markup{\center-column {"D.S." "Nach der 2. Str." "Coda - Coda"}} c
}


It's /almost/ what I want, except that I'd like to have the glyph
\musicglyph #"scripts.coda" instead of the "Coda" string. I don't know
how to put that...
Or is there a completely different, better way to achieve this?

Thanks for your help,
-- 
Markus Grunwald


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