Align voiceOne and voiceFour

2022-01-10 Thread Vlado Ilić
Hello everyone, here's the example: \version "2.22.1" \relative c'' { \key e \major << {dis4. dis8} \\ {e,4 dis} \\ {} \\ {fis2} >> } This example is exactly what i need but with small exception, dis4 in first voice and fis2 in fourth voice to be aligned vertically, not e4 in secon

Re: Align voiceOne and voiceFour

2022-01-10 Thread Vlado Ilić
t; \\ > { \tweak NoteColumn.force-hshift #1.1 e,4 dis} > \\ > {} > \\ > { \tweak NoteColumn.force-hshift #0 fis2} > >> > } > > Cheers, > Valentin > > > > Am Montag, 10. Jänner 2022, 21:41:20 CET schrieb Vlado Ilić: > > Hello everyone, here'

Print brace, clef and key signature at start of Coda separated by blank space

2023-08-16 Thread Vlado Ilić
Hello everyone, example: \version "2.24.1" upper = { \key as \minor c'1 \stopStaff s1*4 \startStaff \section \sectionLabel "Coda" c'1 \bar ".|" } lower = { \key as \minor c'1 \stopStaff s1*4 \startStaff \section \sectionLabel "Coda" c'1 \bar "|." } \score { \new PianoStaff << \new Staff

How to change coda mark symbol in \repeat segno structure?

2023-08-17 Thread Vlado Ilić
Hello, I'm trying to change coda symbol that appears when using \repeat segno structure.If i understand correctly, Mark_engraver is responsible for it and Layout Object is CodaMark. I've tried setting \override CodaMark.text = \markup {"test"} in Voice, Staff and Score context but nothing changes

Re: How to change coda mark symbol in \repeat segno structure?

2023-08-18 Thread Vlado Ilić
That's it, thanks! пет, 18. авг 2023. у 08:32 Jean Abou Samra је написао/ла: > This should do the trick: > > \version "2.24.2" > > { > \repeat segno 2 { > c'1 > \alternative { > \volta 1 { > \once \set Score.codaMarkFormatter = > #(lambda args > #{

Re: Print brace, clef and key signature at start of Coda separated by blank space

2023-08-18 Thread Vlado Ilić
Thank you both, it works great! I had some huge scheme code before v2.24 that i found on maillist, but it stopped working on v2.24, so i had to disable it. And since I've converted old scores to new \repeat segno structure, i hoped that now there is a easy way of doing it, but now i know it's stil

Volta spanner only on first and last repeat bar

2023-08-19 Thread Vlado Ilić
I can shorten a volta spanner to first bar with \set Score.voltaSpannerDuration But how can I make it show on the last bar? For example, the first repeat bar is on page 1 and the last bar is on page 3, how can i avoid printing volta spanner on the 2nd page?

Time signature at the end of measure before jump to coda

2024-08-03 Thread Vlado Ilić
So i need something like in the first picture, on coda i have different time signature than the one before the jump so i need to mark time change just before the jump. Also related, in the second image i need to mark time and key change before jumping from D.S. to the beginning of the piece. How ca

Shorten volta spanner to first and last measure only

2024-08-03 Thread Vlado Ilić
I see there is a \set Score.voltaSpannerDuration = #(ly:make-moment 3/4) but it only prints the volta spanner on the beginning of alternative music, is it possible to print it also on the last measure of alternative? For example, if i have 28 measures of alternative music, only to print volta sp

Re: Time signature at the end of measure before jump to coda

2024-08-03 Thread Vlado Ilić
usic } it breaks the measures 3 and 4, so i need to mark time signature just as symbol, not as real time for next measures. On Sat, Aug 3, 2024 at 8:08 PM Xavier Scheuer wrote: > On Sat, 3 Aug 2024 at 17:17, Vlado Ilić wrote: > > > > So i need something like in the first pic

Cross-nesting \repeat segno and \repeat volta

2024-08-03 Thread Vlado Ilić
I'm wondering the same thing, here's my example: \version "2.24.4" \relative c' { c1 \mark \markup{\segno} \repeat volta 2 { d \mark \markup{\coda} \alternative { \volta 1 { e } \volta 2 { f } } } g_\markup { \hspace #8 \center-column { \line {\italic "D.S." \segno \italic "al" \coda} \italic

Re: Time signature at the end of measure before jump to coda

2024-08-07 Thread Vlado Ilić
This is what i came up with \version "2.24.4" \relative c'' { f \tweak extra-offset #'(0 . -2) \rightHandFinger \markup{ \parenthesize{ \fontsize #4 \compound-meter #'(6 8) } } } It's hacky but it works. On Sun, Aug 4, 2024 at 1:43 AM Vlado Ilić