I would like to tie a note into a short polyphon section \score { \relative { g2 ~ << g2 \\ {\stemUp c8 d e
f} >> } \layout { } } But that gives a warning and no tie. (It is intended to have two half notes tied) You
can't tie across voices, that's true. this works though: \version "2.25.18" \sco
Hi,
May be something like:
\score {
\relative { << { g2 ~ g2}\\ {s2 \stemUp c8 d e f} >> }
\layout { }
}
Hope this helps,
Jean B.
Le lundi 09 septembre 2024 à 17:20 +0200, Sebastian Menge via LilyPond
user discussion a écrit :
> Hi
>
> I would like to tie a note into a short polyphon sect
On 09/09/2024 18:00, Sebastian Menge via LilyPond user discussion wrote:
Thanks Paul that works. However, there are warnings.
Here is a fixed version without warnings.
\version "2.24.0"
\score {
\relative { g2 ~ << g2 \new Voice {\voiceOne c8 d e f} >> }
\layout { }
}
--
Timothy Lanfear
Hi,
I am experimenting with a system to create choir rehearsal midi files. A
part of that is to unfold repeats. I have a function that accepts a score
and creates a new score. The steps are:
1. Extract the music from the score
2. Unfold the repeats
3. Make a new score
For some reason only the fir
Morten Lemvigh writes:
> So the question is: what have I misunderstood? :-)
>
> Best regards,
> Morten
>
> \version "2.24.2"
>
> choirScore = \score {
> \new Staff {
> \relative c' {
> \repeat volta 2 {
> c d e f
> }
> }
> }
> }
>
>
> On 9 Sep 2024, at 23:10, Morten Lemvigh wrote:
>
> Hi,
>
> I am experimenting with a system to create choir rehearsal midi files. A part
> of that is to unfold repeats. I have a function that accepts a score and
> creates a new score. The steps are:
> 1. Extract the music from the score
>
How can I reduce the space between the bracket and the first barline?
Thanks
Hi Dimitri,
> How can I reduce the space between the bracket and the first barline?
%%% SNIPPET BEGINS
\version "2.25.11"
\new ChoirStaff
\with { \override SystemStartBracket.extra-offset = #'(0.5 . 0) }
<<
\new Staff c''1
\new Staff c''1
\new Staff c''1
>>
%%% SNIPPET ENDS
On Tue, 10 Sept 2024 at 02:50, Kieren MacMillan
wrote:
>
> Hi Dimitri,
>
> > How can I reduce the space between the bracket and the first barline?
>
> %%% SNIPPET BEGINS
> \version "2.25.11"
>
> \new ChoirStaff
> \with { \override SystemStartBracket.extra-offset = #'(0.5 . 0) }
Hello,
Althoug