lilypond-user
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

acciaccatura slur direction


From: Joel C. Salomon
Subject: acciaccatura slur direction
Date: Tue, 20 Dec 2022 09:23:35 -0500

What am I doing wrong here?

```
\version "2.24.0"
down = {
  \clef bass
  \slurUp
  \acciaccatura g,8 d'2 % works
  \acciaccatura d8 d'2 | % doesn't
}
\score {
  \down
}
```

Adding `\slurUp` to a redefinition of `\startAcciaccaturaMusic` works,
so why does the code above not work?

Adapted from the example in
<https://lilypond.org/doc/v2.24/Documentation/notation/special-rhythmic-concerns#Redefining-grace-note-global-defaults>:
```
startAcciaccaturaMusic = {
  <>(
  \override Flag.stroke-style = #"grace"
  \slurUp
}

stopAcciaccaturaMusic = {
  \revert Flag.stroke-style
  \slurNeutral
  <>)
}
```

-- Joel



reply via email to

[Prev in Thread] Current Thread [Next in Thread]