Re: Fractional Meter Help.

2020-04-25 Thread melophobic
Oh wow. Thank you so much! That seems to work perfectly! -- Sent from: http://lilypond.1069038.n5.nabble.com/User-f3.html

Re: Fractional Meter Help.

2020-04-25 Thread Aaron Hill
On 2020-04-25 9:09 pm, melophobic wrote: But currently, I have to implement it very awkwardly by putting: \once \override Staff.TimeSignature #'stencil = #(fractional-time-signature "2" "2" "3" "4") To get it to display something like 2⅔/4. I am still new at scheme in general, is there a way

Fractional Meter Help.

2020-04-25 Thread melophobic
Hi all, I have written a scheme that allows me to change the stencil of a time signature to allow for fractional meter: #(define ((fractional-time-signature a b c d) grob) (grob-interpret-markup grob (markup #:override '(baseline-skip . .1) (#:number (#:center-column (

Re: Fonts for text

2020-04-25 Thread Jinsong Zhao
On 2020/4/26 5:35, Ignacio Lois wrote: AAAH!! \version "2.19.83" \header {     title = \markup {       \override #'(font-name . "ITC Souvenir")               "My Title"             } } \score {   c'' } *Now* that's the example I should have sent. Can anyone check the fonts? There's

Re: Search inside LilyPond

2020-04-25 Thread Freeman Gilmore
On Sat, Apr 25, 2020 at 8:20 PM David Wright wrote: > On Sat 25 Apr 2020 at 19:40:47 (-0400), Freeman Gilmore wrote: > > Is there an app that can search inside LilyPond? > > > > For example in makam.ly there is: \override > KeySignature.glyph-name-alist = > > \makamGlyphs . > > > > I would like

Re: Search inside LilyPond

2020-04-25 Thread Freeman Gilmore
On Sat, Apr 25, 2020 at 8:09 PM David Nalesnik wrote: > On Sat, Apr 25, 2020 at 6:41 PM Freeman Gilmore > wrote: > > > > Is there an app that can search inside LilyPond? > > > > For example in makam.ly there is: \override > KeySignature.glyph-name-alist = \makamGlyphs . > > > > I would like to

Re: Break visibility for notes?

2020-04-25 Thread Fr. Samuel Springuel
> On 23 Apr, 2020, at 3:42 PM, Thomas Morley wrote: > > Using Custos for it sounds very strange. I don’t disagree. I picked it because of the objects that obey break-visibility (http://lilypond.org/doc/v2.19/Documentation/notation/visibility-of-objects#using-break_002dvisibility) it was the

Optional arguments for scheme functions

2020-04-25 Thread Fr. Samuel Springuel
I’m trying to write a music function in scheme in which the first argument is optional and have run into something that confuses me: The following works: \version "2.19.84" recite = #(define-music-function (times note) ((integer? 1) ly:music?) #{ \repeat unfold #times {

Re: Search inside LilyPond

2020-04-25 Thread David Wright
On Sat 25 Apr 2020 at 19:40:47 (-0400), Freeman Gilmore wrote: > Is there an app that can search inside LilyPond? > > For example in makam.ly there is: \override KeySignature.glyph-name-alist = > \makamGlyphs . > > I would like to find where, \makamGlyphs, is defined. $ grep -r makamGlyphs

Re: Search inside LilyPond

2020-04-25 Thread David Nalesnik
On Sat, Apr 25, 2020 at 6:41 PM Freeman Gilmore wrote: > > Is there an app that can search inside LilyPond? > > For example in makam.ly there is: \override KeySignature.glyph-name-alist = > \makamGlyphs . > > I would like to find where, \makamGlyphs, is defined. > > > Thank you, ƒg > You can

Search inside LilyPond

2020-04-25 Thread Freeman Gilmore
Is there an app that can search inside LilyPond? For example in makam.ly there is: \override KeySignature.glyph-name-alist = \makamGlyphs . I would like to find where, \makamGlyphs, is defined. Thank you, ƒg

Re: Fonts for text

2020-04-25 Thread Ignacio Lois
AAAH!! \version "2.19.83" \header { title = \markup { \override #'(font-name . "ITC Souvenir") "My Title" } } \score { c'' } *Now* that's the example I should have sent. Can anyone check the fonts? There's the links to install them in my original

Re: Fonts for text

2020-04-25 Thread Ignacio Lois
Sorry, this is the correct example (dot missing after font-name): \version "2.19.83" \header { title = \markup { \override #'(font-name "ITC Souvenir") "My Title" } } \score { c'' } If I try other fonts they show correctly, but these two don't seem

Re: Fonts for text

2020-04-25 Thread Ignacio Lois
Hi, Thanks Ben and Noeck for your replies. I'm running Frescobaldi 3.0.0 and I can't find Document Fonts under Tools. I'll check for a newer version This is a minimal example that fails as described: \version "2.19.83" \header { title = \markup { \override #'(font-name "ITC

Re: Fonts for text

2020-04-25 Thread Ben
On 4/25/2020 2:47 PM, Ignacio Lois wrote: Hello list, I'm trying to use any font like these for my titles. I tried ITC Souvenir , which would look like this: image.png And Sunset-Serial ,

Re: Fonts for text

2020-04-25 Thread Noeck
Hi Ignacio, it is better to send a minimal working example (MWE) instead of screenshots. Here is one. This should work: \version "2.20.0" \markup { \override #'(font-name . "Ubuntu Thin") "Test" } As you are using Frescobaldi (I hope a recent version), you can search for the

Re: Scaled durations in scheme

2020-04-25 Thread Fr. Samuel Springuel
Nevermind, I figured it out: \version "2.19.84" recite-note = #(define-music-function (note) (ly:music?) (define dur 1) (withMusicProperty 'duration (ly:make-duration dur 0 (/ (expt 2 dur) 4)) note)) \new Staff { \new Voice { g' \recite-note g' g' } }

Scaled durations in scheme

2020-04-25 Thread Fr. Samuel Springuel
Within a scheme music function, how can I tie the value of the third argument of ly:make-duration to the value of the first argument so that the note takes up the space of a 1/4 note? I’m trying to set things up so that I only have to change one thing to change the appearance of the note

Fonts for text

2020-04-25 Thread Ignacio Lois
Hello list, I'm trying to use any font like these for my titles. I tried ITC Souvenir , which would look like this: [image: image.png] And Sunset-Serial , which would look like this: [image:

Re: resetting accidentals at word breaks

2020-04-25 Thread David Wright
On Sat 25 Apr 2020 at 11:59:00 (-0400), Fr. Samuel Springuel wrote: > > On 25 Apr, 2020, at 11:44 AM, Fr. Samuel Springuel > > wrote: > >> On 23 Apr, 2020, at 4:23 PM, Aaron Hill wrote: > >> > >> Ooh, I didn't think of that. Since \bar just sets the whichBar property, > >> it is a case of

Re: resetting accidentals at word breaks

2020-04-25 Thread Fr. Samuel Springuel
> On 25 Apr, 2020, at 11:44 AM, Fr. Samuel Springuel > wrote: > >> On 23 Apr, 2020, at 4:23 PM, Aaron Hill wrote: >> >> Ooh, I didn't think of that. Since \bar just sets the whichBar property, it >> is a case of whichever \bar command is last that wins. So the code just >> needs to have a

Re: resetting accidentals at word breaks

2020-04-25 Thread Fr. Samuel Springuel
> On 23 Apr, 2020, at 4:23 PM, Aaron Hill wrote: > > Ooh, I didn't think of that. Since \bar just sets the whichBar property, it > is a case of whichever \bar command is last that wins. So the code just > needs to have a variation that checks whether whichBar is already set and > only

EPS Problem

2020-04-25 Thread Jonathan Danner
Hello, Attached is my LilyPond score. Ive been experimenting with ways to write for wind machine and came up with a way to create eps files to import. During my testing I positioned it the way i'd like it to be, but the next page did not render correctly as a result. Does anyone know how to