lilypond-user
[Top][All Lists]
Advanced

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

Re: From the 2.19.84 documentation: Stanzas with different rhythms (Stro


From: Jean Abou Samra
Subject: Re: From the 2.19.84 documentation: Stanzas with different rhythms (Strophen mit unterschiedlichem Rhythmus
Date: Fri, 16 Jul 2021 10:07:40 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.11.0

Le 16/07/2021 à 10:01, Bernhard Kleine a écrit :
I cannot discern what is wrong in the following example: There are two
errors: the slur is not shown and the unterminated hyphen seems very
strange. The overall structure is from Frescobaldi Partitur assistant.

Regards Bernhard

\version "2.21.1"
\language "deutsch"
\header {
   title = "Möge die Straße uns zusammenführen"
}
\paper {
   #(set-paper-size "a4")
}
global = {
   \key b \major
   \time 4/4
   \autoBeamOff
}

soprano = \relative c'' {
   \global
   % Die Noten folgen hier.
   \set Staff.autoBeaming = ##f
   a4 a8 \slurDashed (c) g4 g |

\slurDashed is like an \override. You have to put it
before the note with the slur:

\slurDashed
a8( c)

or

\once \slurDashed
a8( c)

or (to have it like a \tweak):

a8\single\slurDashed( c)

Best,
Jean



reply via email to

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