On 2018-09-12 6:40 am, Aaron Hill wrote:
On 2018-09-12 6:24 am, Bernhard Kleine wrote:
In the attached foto you see the template. Using \breathe\fermata raises
the error:
F:/Meine Noten/EigeneNoten/test.ly:149:13: error: syntax error,
unexpected EVENT_IDENTIFIER
   \breathe
            \fermata

Hi Bernhard,

Would this work for you?

%%%%
\version "2.19.82"
breathe-fermata = { \once \override BreathingSign.text =
  \markup { \combine \raise #1 \musicglyph "scripts.ufermata"
    \musicglyph "scripts.rcomma" } \breathe }
<< { b'2. \breathe-fermata b'4 } >>
%%%%

Here is an variant that shows using \translate-scaled as opposed to simply \raise to accommodate an alternate glyph:

%%%%
\version "2.19.82"
breathe-fermata = { \once \override BreathingSign.text =
  \markup { \combine \raise #1 \musicglyph "scripts.ufermata"
    \musicglyph "scripts.rcomma" } \breathe }
caesura-fermata = { \once \override BreathingSign.text =
  \markup { \combine
    \translate-scaled #'(0.5 . 1.5) \musicglyph "scripts.ufermata"
    \musicglyph "scripts.caesura.curved" } \breathe }
<< { b'2. \breathe-fermata b'4 | b'2. \caesura-fermata b'4 } >>
%%%%

-- Aaron Hill
_______________________________________________
lilypond-user mailing list
[email protected]
https://lists.gnu.org/mailman/listinfo/lilypond-user

Reply via email to