Re: edition-engraver mod on first note

2020-11-07 Thread Stefano Troncaro
I rendered your MWE and Lilypond created the red note... then I checked the repo and it seems I don't have the newest version, I'm using an old commit from the refactor-override branch. I will check later with the latest master and let you know how it goes. El sáb., 7 nov. 2020 a las 19:47, damian

Re: Change staff and cross staff

2020-11-07 Thread Knute Snortum
Yes, that does it. Thanks! -- Knute Snortum On Sat, Nov 7, 2020 at 2:38 PM damianlegassick wrote: > > urgh > > and you'll have to add > > \once \override Dots.stencil = ##f > > just before the gis8. > > Damian > > On 7 November 2020 at 22:33, damianlegassick wrote: > > fiddly one this > > \ve

Re: Change staff and cross staff

2020-11-07 Thread Lukas-Fabian Moser
Hi Knute, Am 07.11.20 um 20:02 schrieb Knute Snortum: Here's a better MWE with my try using voices in the left hand: %%% Start \version "2.20.0" \language "english" staffUp = \change Staff = "upper" staffDown = \change Staff = "lower" rh = \relative c' { s8. \crossStaff e16 } lh = \rela

Re: edition-engraver mod on first note

2020-11-07 Thread damianlegassick
Hi Stefano this is extracted from the example-1.ly from the repo \version "2.20.0" \include "oll-core/package.ily" \loadPackage edition-engraver \addEdition test \editionMod test 1 0/4 along.Voice.A \once \override NoteHead.color = #red \editionMod test 1 1/4 along.Voice.A \once \override Note

Re: Change staff and cross staff

2020-11-07 Thread damianlegassick
urgh and you'll have to add \once \override Dots.stencil = ##f just before the gis8. Damian On 7 November 2020 at 22:33, damianlegassick wrote: fiddly one this \version "2.21.7" \layout { \context { \PianoStaff \consists #Span_stem_engraver } } rhmusic = { \time 3/4 \key e \major \

Re: Change staff and cross staff

2020-11-07 Thread damianlegassick
fiddly one this \version "2.21.7" \layout { \context { \PianoStaff \consists #Span_stem_engraver } } rhmusic = { \time 3/4 \key e \major \change Staff = "lower" \stemUp 8[ r16 \change Staff = "upper" e'16] } lhmusic = { \key e \major \clef "bass" << { \once \omit Stem \once \omit Beam \slurD

Re: Change staff and cross staff

2020-11-07 Thread Knute Snortum
Oh, this is so close! The snippet provided doesn't have the slur from the lower g sharp to the b in it, so I tried adding it. The b is in the lower hand so I tried slurring to the e and then use \shape to fix it, but it produces a programming error. Here's the modified snippet... %%% Start \ver

Re: Change staff and cross staff

2020-11-07 Thread Knute Snortum
That looks good! Thanks! -- Knute Snortum On Sat, Nov 7, 2020 at 11:09 AM damianlegassick wrote: > > Try this for starters > > \version "2.21.7" > > \layout { \context { \PianoStaff \consists #Span_stem_engraver } } > > rhmusic = { > time 3/4 \key e \major > \change Staff = "lower" > \stemUp 8

Re: OTF text font family with optical sizes : unable to access regular font

2020-11-07 Thread Werner LEMBERG
>> I’m having an issue using the Arno Pro typeface as a text font in >> LilyPond. [...] Have you already sent us the output of fc-list | grep 'Arno Pro' ? Werner

Re: OTF text font family with optical sizes : unable to access regular font

2020-11-07 Thread Phil Holmes
The Adobe Font page (https://fonts.adobe.com/fonts/arno) lists the regular font as "Arno Pro Regular".  Have you tried that?  I'm definitely not a font expert, but reckon "Arno Pro" is probably the font family in total. On 27/10/2020 15:50, Daniel Tobias Johansen Langhoff wrote: Hi I’m having

Re: edition-engraver mod on first note

2020-11-07 Thread Stefano Troncaro
Hi Damian, can you post an example? If I remember correctly (I may be misremembering) there is an issue in scores starting with \partial But for example I use the following on a score: LVm = \musicPath PNO.left.Voice.main > \editionMod ed 1 0 \LVm { > \once \override DynamicText.X-extent = #emp

Re: Change staff and cross staff

2020-11-07 Thread damianlegassick
Try this for starters \version "2.21.7" \layout { \context { \PianoStaff \consists #Span_stem_engraver } } rhmusic = { time 3/4 \key e \major \change Staff = "lower" \stemUp 8[ r16 \change Staff = "upper" e'16] } lhmusic = { \key e \major \clef "bass" << { s8. \crossStaff {b16} } \\ { e,4 } >

Re: Change staff and cross staff

2020-11-07 Thread Knute Snortum
Here's a better MWE with my try using voices in the left hand: %%% Start \version "2.20.0" \language "english" staffUp = \change Staff = "upper" staffDown = \change Staff = "lower" rh = \relative c' { s8. \crossStaff e16 } lh = \relative c' { \clef bass << { 8[ r16 b] } \\ { e,,4 } >> }

Change staff and cross staff

2020-11-07 Thread Knute Snortum
I have a tricky measure in the Chopin Mazurka I'm working on. The notes need to be on the lower staff (from the right hand) and the last chord is cross staff. I'd like to be able to do something like this... %%% Start \version "2.20.0" staffUp = \change Staff = "upper" staffDown = \change Sta

Re: Custom page numbers in table of contents

2020-11-07 Thread Hwaen Ch'uqi
Ah, I see what Noah means. The code quoted is not misleading, but neither is it practical. It is meant to demonstrate a specific point, not to show a real-world example. Not sure if there is anything to be done about that on the documentation side, but the confusion is certainly understandable. Hw