Re: spurious partial in 2nd repeat abc->ly

2021-02-26 Thread Joe McCool
On Fri, 26 Feb 2021 at 09:58, Lukas-Fabian Moser wrote: > Hi Joe, > > But there is still something wrong with my understanding. When I compile > the attached with 2.22, Lily complains of a barcheck fail at 15,30 :-( > > This is caused by \unfoldRepeats in the MIDI version of the score and the >

Re: Explicit placement of rests in a percussion staff

2021-02-26 Thread Andrew Bernard
You could say something like: \once \override Rest.extra-offset = #'(0 . 3) r4 People don't like using extra-offset for various reasons, but sometimes it does the job just fine. Andrew

Re: Explicit placement of rests in a percussion staff

2021-02-26 Thread Calvin Ransom
\version "2.22.0" \score{ \new DrumStaff \drummode { << { sn16 16 16 16 } \\ { \once \override Rest.Y-offset = #1.5 r4 } >>%m54-65 } } On Fri, Feb 26, 2021 at 4:31 PM Calvin Ransom wrote: > Hi Andrew, > It half-works on what I am trying to do,

Re: Explicit placement of rests in a percussion staff

2021-02-26 Thread Andrew Bernard
Post an MWE with the polyphony. Andrew Calvin Ransom wrote on 27/02/2021 11:31 AM: Hi Andrew, It half-works on what I am trying to do, I am attempting to get the rest closer to the one above it (I have polyphony) Your code works but I can't get the rest closer, I believe I have to do

Re: Explicit placement of rests in a percussion staff

2021-02-26 Thread Calvin Ransom
Hi Andrew, It half-works on what I am trying to do, I am attempting to get the rest closer to the one above it (I have polyphony) Your code works but I can't get the rest closer, I believe I have to do another override but I am unsure as to what. Thank you! Calvin Ransom On Fri, Feb 26, 2021 at

Re: Explicit placement of rests in a percussion staff

2021-02-26 Thread Andrew Bernard
Would something like this work for you? \version "2.23.0" \score{ \new DrumStaff { \drummode { cymc hh ss tomh bd \once \override Rest.Y-offset = #2 r } } } Andrew

Re: Explicit placement of rests in a percussion staff

2021-02-26 Thread Calvin Ransom
I copied the wrong snippet version, my apologies. **begining of snippet** \score{ \new DrumStaff \drummode { bd4\rest } } **end of snippet** On Sat, Feb 27, 2021 at 3:03 PM Calvin Ransom wrote: > Good afternoon everyone, > I am trying to move the vertical position of a rest in some

Explicit placement of rests in a percussion staff

2021-02-26 Thread Calvin Ransom
Good afternoon everyone, I am trying to move the vertical position of a rest in some percussion music I am typesetting for my teacher. I am using v. 2.22.0 In the manual it says 'To explicitly specify a rest’s vertical position, write a note followed by \rest." When I use the following snippet it

Re: Setting up VS Code for Lilypond

2021-02-26 Thread Ankush Laxman
Glad to hear it! On Fri, 26 Feb 2021, 21:16 Knute Snortum, wrote: > I tried it and it worked. Very nice. I will probably still use > Frescobaldi though. > > -- > Knute Snortum > > > On Fri, Feb 26, 2021 at 4:21 AM Ankush Laxman > wrote: > > > > SETTING UP VS CODE FOR LILYPOND > >

Re: Setting up VS Code for Lilypond

2021-02-26 Thread Knute Snortum
I tried it and it worked. Very nice. I will probably still use Frescobaldi though. -- Knute Snortum On Fri, Feb 26, 2021 at 4:21 AM Ankush Laxman wrote: > > SETTING UP VS CODE FOR LILYPOND > -- > > INTRODUCTION > > > VS Code can be used as an editor

Re: min size svg, how to

2021-02-26 Thread David Wright
On Fri 26 Feb 2021 at 03:03:26 (-0300), David Pirotte wrote: > > > 1- crop > > > I am trying to produce 'min sized' svg images, but I fail. As an > > example: > > ... > > which I compile using this command: > > lilypond -dcrop --svg test-2.ly > > I am sorry for the 'noise', I actually

Setting up VS Code for Lilypond

2021-02-26 Thread Ankush Laxman
*SETTING UP VS CODE FOR LILYPOND--* *INTRODUCTION* VS Code can be used as an editor for Lilypond files. In this post, I am going to show you how to set up VS Code as an editor for Lilypond files. First, you need to ensure that Lilypond is setup properly

Idea: Use tags for unfolded repeats

2021-02-26 Thread Valentin Petzel
Hello! Sometimes you get a repeated section where only some repeats are somehow annotated – let’s say a dynamic marking, some sort of markup or whatever. So I suggest: \repeat unfold should take tags like let’s say #_repeat_1, #_repeat_2, ... (maybe with an option for some sort of

Re: spurious partial in 2nd repeat abc->ly

2021-02-26 Thread Lukas-Fabian Moser
Hi Joe, But there is still something wrong with my understanding.  When I compile the attached with 2.22, Lily complains of a barcheck fail at 15,30 :-( This is caused by \unfoldRepeats in the MIDI version of the score and the conflicting simultaneous \partials you issue in mill_mill_o