Re: Error when using lilypond-book

2025-02-18 Thread SK
elf. Only thing I did was > > cleaning up the output directory by deleting old files - as far as I > > understand this should not change the behaviour of the script. > > I'm on Windows 10, lilypond 2.24.4 > > On Thu 13 Feb 2025 at 18:07:00 (+0100), SK wrote: > > Hello, t

Re: Error when using lilypond-book

2025-02-15 Thread David Wright
cleaning up the output directory by deleting old files - as far as I > understand this should not change the behaviour of the script. > I'm on Windows 10, lilypond 2.24.4 On Thu 13 Feb 2025 at 18:07:00 (+0100), SK wrote: > Hello, thank you for your answer. I will post the output usin

Re: Error when using lilypond-book

2025-02-13 Thread SK via LilyPond user discussion
Corporation\PhysX\Common;C:\Program Files (x86)\Common Files\Propellerhead Software\ReWire\;C:\Program Files\Common Files\Propellerhead Software\ReWire\;C:\Program Fil Setting INSTALLER_PREFIX to 'C:/Users/xxx/Documents/lilypond' Using run-time value for datadir, setting it to &#x

Re: Error when using lilypond-book

2025-02-13 Thread SK
Hello, thank you for your answer. I will post the output using debug as soon as I'm back on the computer. However, I noticed the following yesterday: If I change the output directory of my command to, say, "D:\test", it runs and generates the .tex files. "test" didn'

Re: Error when using lilypond-book

2025-02-13 Thread Knute Snortum
Remember to CC the mailing list or reply all! On Thu, Feb 13, 2025, 8:40 AM SK wrote: > Hello, thank you for your answer. I will post the output using debug as > soon as I'm back on the computer. However, I noticed the following > yesterday: If I change the output directory of

Re: Error when using lilypond-book

2025-02-12 Thread Knute Snortum
On Wed, Feb 12, 2025 at 8:53 AM SK wrote: > Hello, > > since a few days I cannot use a script involving lilypond-book anymore. > It's really strange cause I don't remember to change anything for the > script, the included python or lilypond itself. Only thing I did was > cleaning up the output di

Error when using lilypond-book

2025-02-12 Thread SK
Hello, since a few days I cannot use a script involving lilypond-book anymore. It's really strange cause I don't remember to change anything for the script, the included python or lilypond itself. Only thing I did was cleaning up the output directory by deleting old files - as far as I understand

Re: How to break a loop when using Scheme in LilyPond?

2024-11-19 Thread David Kastrup
tran li writes: > My current code is as follows: > > ```ly > > #(define* ((_hash-table-deep-ref getter) h keys #:optional (fallback #f)) >   (let* ((target h)) >     (for-each >   (lambda (key) >     (set! target (getter target key))) >   keys) >     target)) > > #(define hash-deep-re

Re: How to break a loop when using Scheme in LilyPond?

2024-11-19 Thread Valentin Petzel
Hello, > However, in Scheme, returning a value inside a loop is troublesome. I > must first break the loop and then return the value. So what is the > correct way of doing this? Scheme does not really have loops. At least not in the sense you know it from procedural languages. `for-each` is naug

How to break a loop when using Scheme in LilyPond?

2024-11-19 Thread tran li
I encountered a situation that need to break a loop while invoking Scheme code in LilyPond. Typically LilyPond offers the `for-each` function which simulates the for-loop in most programming languages. However, the `break` functionality isn't explicitly offered. There seems to be a function nam

Re: Error while using `hash-for-each` to set grob properties.

2024-11-18 Thread David Kastrup
tran li writes: > In my LilyPond file (which is a minimal excerpt in a recent project I > am working on), I created a Scheme-based music function to set grob > properties by passing an `alist`. The method works by merging the > given property `alist` to the `details` grob property. In order not t

Error while using `hash-for-each` to set grob properties.

2024-11-18 Thread tran li
In my LilyPond file (which is a minimal excerpt in a recent project I am working on), I created a Scheme-based music function to set grob properties by passing an `alist`. The method works by merging the given property `alist` to the `details` grob property. In order not to get confused with th

Re: Using a Scheme function that returns a bookpart?

2024-10-13 Thread Cameron Hall
On Sun, 13 Oct 2024 10:20:29 +0200 Thomas Morley wrote: > Am Sa., 12. Okt. 2024 um 20:33 Uhr schrieb Cameron Hall > : > > > > In this example, I have function called "scorePart" that returns a > > staff that I use to make parts in the score, and this works. I have > > another function called "sta

Re: Using a Scheme function that returns a bookpart?

2024-10-13 Thread Thomas Morley
Am Sa., 12. Okt. 2024 um 20:33 Uhr schrieb Cameron Hall : > > In this example, I have function called "scorePart" that returns a > staff that I use to make parts in the score, and this works. I have > another function called "standalonePart" that returns a bookpart, which > I'd like to use to print

Using a Scheme function that returns a bookpart?

2024-10-12 Thread Cameron Hall
In this example, I have function called "scorePart" that returns a staff that I use to make parts in the score, and this works. I have another function called "standalonePart" that returns a bookpart, which I'd like to use to print individual instrument parts. However, when I attempt to use it I ge

Re: Poor formatting when using partCombine and quoteDuring

2024-09-27 Thread Saul Tobin
Hi Cameron, I'm sure others on this list may have differing opinions, but personally my strong advice is to simply enter the music for each part verbatim in a single variable, with one measure per line. Using variables and quotes for themes played repeatedly or by many instruments seems li

Re: Poor formatting when using partCombine and quoteDuring

2024-09-27 Thread Knute Snortum
On Fri, Sep 27, 2024 at 7:06 AM Cameron Hall wrote: > > So, given this situation, do you have any suggestions on how to > approach this and reduce the amount of duplicated code as much as > possible? > It's not as powerful as \quoteDuring, but you could use variables to hold the unison parts: (

Re: Poor formatting when using partCombine and quoteDuring

2024-09-27 Thread Cameron Hall
On Thu, 26 Sep 2024 21:36:58 -0500 David Wright wrote: > On Wed 25 Sep 2024 at 16:35:51 (-0500), Cameron Hall wrote: > > Hello, I'm a fairly new user, and I'm trying to combine some > > similar parts together in a score which may contain quoted > > section

Re: Poor formatting when using partCombine and quoteDuring

2024-09-26 Thread David Wright
On Wed 25 Sep 2024 at 16:35:51 (-0500), Cameron Hall wrote: > Hello, I'm a fairly new user, and I'm trying to combine some similar parts > together in a score which may contain quoted sections. However, it seems that > using quoteDuring screws up the layout. Instead of getti

Poor formatting when using partCombine and quoteDuring

2024-09-25 Thread Cameron Hall
Hello, I'm a fairly new user, and I'm trying to combine some similar parts together in a score which may contain quoted sections. However, it seems that using quoteDuring screws up the layout. Instead of getting neat chords, the stem direction isn't right, it prints "Solo

Re: Inserting an inline Tie/Slur Symbol in LaTeX Documents Using LilyPond or Other Methods

2024-08-21 Thread David Wright
On Wed 21 Aug 2024 at 19:12:04 (-0700), Peter X wrote: > Additionally, if there is a specific glyph that represents a tie/slur > symbol that can be used within LaTeX, I would be interested in learning > about that as well. https://www.cogsci.ed.ac.uk/~richard/utf-8.cgi?input=203f&mode=hex htt

Inserting an inline Tie/Slur Symbol in LaTeX Documents Using LilyPond or Other Methods

2024-08-21 Thread Peter X
understand that it might be possible to achieve this using LilyPond embedded within LaTeX, but I am seeking guidance on the best practices for doing so. If anyone has experience with this or could suggest a reliable method—whether using LilyPond or another LaTeX package—I would greatly appreciate your

Re: fontconfig not using XDG directories

2024-06-01 Thread Jean Abou Samra
> I am running on Alpine Linux and I noticed that lilypond creates > ~/.fontconfig/ with cache files every time I run it. > > It seems like fontconfig is supposed to follow the XDG environment > variables > (https://gitlab.freedesktop.org/fontconfig/fontconfig/-/commit/8c255fb), > which I have def

fontconfig not using XDG directories

2024-06-01 Thread Coco Liliace
Hi! I am running on Alpine Linux and I noticed that lilypond creates ~/.fontconfig/ with cache files every time I run it. It seems like fontconfig is supposed to follow the XDG environment variables (https://gitlab.freedesktop.org/fontconfig/fontconfig/-/commit/8c255fb), which I have defined on

Re: Problems hiding clef using \omit

2024-05-17 Thread Dirck Nagy
To: kie...@kierenmacmillan.info Cc: Dirck Nagy ; lilypond-user@gnu.org ; dirckn...@hotmail.com Subject: Re: Problems hiding clef using \omit Caution: *External Email: Use caution responding, opening attachments, or clicking on links.* On 2024-05-17 10:15 am, kie...@kierenmacmillan.info wrote

Re: Problems hiding clef using \omit

2024-05-17 Thread Aaron Hill
On 2024-05-17 10:15 am, kie...@kierenmacmillan.info wrote: Hi Dirck, I don't know what the term is for this "8", so i was not successful searching the manuals and snippets. ClefModifier Also if you need help with identif

Re: Problems hiding clef using \omit

2024-05-17 Thread kieren
Hi Dirck, I don't know what the term is for this "8", so i was not successful searching the manuals and snippets. ClefModifier Hope that helps! Kieren.

Problems hiding clef using \omit

2024-05-17 Thread Dirck Nagy
Dear Lilypond I'm having a problem hiding a clef to create "white space" before a system: When i use the \omit Staff.Clef command, the clef disappears, but the ottava "8" remains. BTW, I don't know what the term is for this "8", so i was not successful searching the manuals and snippets. how

Re: Conductor cues using braces

2024-05-08 Thread Pierre-Luc Gauthier
Wow that indentation... here is the file. Le mer. 8 mai 2024, à 11 h 05, Pierre-Luc Gauthier a écrit : > > \version "2.25.15" > > \language "english" > > % _taken from the LSR : > #(define-markup-command (long-curly-bracket layout props arg-height) >(number?) >"Draw a curly bracket with a

Re: Conductor cues using braces

2024-05-08 Thread Pierre-Luc Gauthier
\version "2.25.15" \language "english" % _taken from the LSR : #(define-markup-command (long-curly-bracket layout props arg-height) (number?) "Draw a curly bracket with a variable length." (interpret-markup layout props (markup #:translate (cons

Conductor cues using braces

2024-05-08 Thread Pierre-Luc Gauthier
Hello there, Originaly : https://lists.gnu.org/archive/html/lilypond-user/2017-11/msg00303.html I still never got to add cue notes in my conductor scores to help me during rehearsals. Obviously, I could write them by hand but I (re-)compile my parts way too often for that. I have lowered my expe

Re: Help using a Scheme variable in a function

2024-04-13 Thread ming tsang
Hello Mathew Fong, I am very interested in this scheme variable in a function, however I have a hard time generating a working .ly with sample output. Thank you. -- ming (lyndon) tsang

Re: multipart choral music - disable barlines between staves when using GrandStaff within ChoirStaff

2024-03-23 Thread Eby Mani
Thanks, i haven't been using lilypond for a while, and forgot even the basic things like these. On Saturday, 23 March, 2024 at 07:48:32 pm IST, David Wright wrote: On 2024-03-23 2:12 am, Eby Mani wrote: > Two questions. > 1, How do i set instrument names as per attached

Re: multipart choral music - disable barlines between staves when using GrandStaff within ChoirStaff

2024-03-23 Thread David Wright
On 2024-03-23 2:12 am, Eby Mani wrote: > Two questions. > 1, How do i set instrument names as per attached "example_1" picture. > > 2, example_1 - How do i disable connecting barlines between staves when > using PianoStaff or GrandStaff within ChoirStaff. You could a

Re: multipart choral music - disable barlines between staves when using GrandStaff within ChoirStaff

2024-03-23 Thread Eby Mani
gt; > 2, example_1 - How do i disable connecting barlines between staves when > using PianoStaff or GrandStaff within ChoirStaff. This is not the complete scenario with all voices and lyrics, but it should give you the general idea: 1. Use the ChoirStaff which already omits the SpanBar. 2

Re: multipart choral music - disable barlines between staves when using GrandStaff within ChoirStaff

2024-03-23 Thread Aaron Hill
On 2024-03-23 2:12 am, Eby Mani wrote: Two questions. 1, How do i set instrument names as per attached "example_1" picture. 2, example_1 - How do i disable connecting barlines between staves when using PianoStaff or GrandStaff within ChoirStaff. This is not the complete scenari

Re: Using old definition of bass figures for 6\\, 7\\, 9\\ ...

2024-03-06 Thread Martin Straeten
Thanks, that works fine > Please try the attached solution. > > >Werner > \version "2.24.0" > > \paper{ > #(define fonts (set-global-fonts #:music "paganini")) > > #(add-text-replacements! >`(("♭" . ,#{ \markup { \hspace #0.4 \raise #0.4 \smaller \smaller \flat } > #}) > ; add

Re: Using old definition of bass figures for 6\\, 7\\, 9\\ ...

2024-03-06 Thread Werner LEMBERG
> adapted sample from > https://lilypond.org/doc/v2.24/Documentation/bd/lily-a6a3b6ba.ly: > > \paper{ > #(define fonts > (set-global-fonts > #:music "paganini" > )) > } > \figures { > \set figuredBassPlusDirection = #RIGHT > <7\\ 6 4 2\+> <4\+ _-> <3 5\+ 3 > <6\\ 4 3> <9\\>

Re: Using old definition of bass figures for 6\\, 7\\, 9\\ ...

2024-03-06 Thread Werner LEMBERG
> The special font figures introduced with 2.24 breaks old typesets > using fonts provided by https://github.com/OpenLilyPondFonts > > Is there a way to switch to the old behaviour? Please provide a (small, working) example of the problem you encounter. Werner

Using old definition of bass figures for 6\\, 7\\, 9\\ ...

2024-03-04 Thread Martin Straeten
The special font figures introduced with 2.24 breaks old typesets using fonts provided by https://github.com/OpenLilyPondFonts Is there a way to switch to the old behaviour? Kind regards, Martin

Re: Using __ extender in lyrics

2024-03-03 Thread Andy Bradford
Thus said Hans Aikema on Sun, 03 Mar 2024 18:46:46 +0100: > A solution to it is to put an empty lyric ("") on the parenthesised f > when there are no lyrics for it That's so simple and I don't know why I didn't think of doing just that (hindsight and all that) instead of trying to use \

Re: Using __ extender in lyrics

2024-03-03 Thread Hans Aikema
> On 3 Mar 2024, at 18:01, Andy Bradford > wrote: > > Hello, > > I seem to have some fundamental misunderstanding about how the __ > extender is to be used in lyrics. It seems that under some conditions > it doesn't behave as I would expect but I may be doing it wrong. The __

Using __ extender in lyrics

2024-03-03 Thread Andy Bradford
Hello, I seem to have some fundamental misunderstanding about how the __ extender is to be used in lyrics. It seems that under some conditions it doesn't behave as I would expect but I may be doing it wrong. Given the following example, what am I doing wrong? It works fine fo

Re: Volta spanner missing edge when using "|" as endRepeatType

2024-02-29 Thread Andy Bradford
Thus said Thomas Morley on Thu, 29 Feb 2024 10:47:06 +0100: > \allowVoltaHook = "|" > placed toplevel, should do the trick. Thanks, for the archives, the correct syntax is (without the "="): \allowVoltaHook "|" Works great. Andy

Re: Volta spanner missing edge when using "|" as endRepeatType

2024-02-29 Thread Thomas Morley
ing up in the middle of > the piece, so I set the endRepeatType to "|", but when I do that, the > right edge of the volta spanner loses the stright edge line. I've tried > various combinations of bars to see if I can get it to work but haven't > succeeded so far.

Volta spanner missing edge when using "|" as endRepeatType

2024-02-28 Thread Andy Bradford
when I do that, the right edge of the volta spanner loses the stright edge line. I've tried various combinations of bars to see if I can get it to work but haven't succeeded so far. I also tried just using a solid line Text spanner but couldn't find a way to get any text "in

Re: How do I force chord names to top of stave when using multiple voices?

2024-02-05 Thread Valentin Petzel
s \new Staff << voiceI \\ voiceII >> >> so do \language "english" << \chords { e1:maj } \new Staff << \relative c'' { \key e \major e1 | } \\ \relative c' { 1 | } >> >> C

bar lines shift when using proportional notation

2024-02-05 Thread Adrian Kleinlosen via LilyPond user discussion
Hi LilyPonders, I would like to notate a piece proportionally. To do this, I have created (with a little help) a markup command that I can use to place time signatures above the bar lines. But as soon as I do this, they move to the left, whereas the bar lines are in the right place if I don't use

How do I force chord names to top of stave when using multiple voices?

2024-02-04 Thread Marcus Mayo
Hi all, I'm using lilypond to practice my voice leading. I want to keep the harmony as a separate voice for the sake of tidiness. However, when I add a second voice, the chords appear underneath the staff as opposed to above it. How do I fix this? Example: \version "2.25.11" \la

Re: Using Lilyjazz with LilyPond 2.25.11

2024-01-20 Thread Laurie Savage
provides the LilyJazz open-source font for lilypond. > > Original code by Torsten Hämmerle and Abraham Lee. For more information on > producing Jazz lead sheets with Lilypond, checkout Abraham's [blog post]( > http://leighverlag.blogspot.fr/2015/12/mimicking-real-book-look.html).

Re: Using Lilyjazz with LilyPond 2.25.11

2024-01-20 Thread Laurie Savage
ginal code by Torsten Hämmerle and Abraham Lee. For more information on producing Jazz lead sheets with Lilypond, checkout Abraham's [blog post]( http://leighverlag.blogspot.fr/2015/12/mimicking-real-book-look.html). ## Installation Install using [lyp](https://github.com/noteflakes/lyp): ```

Re: Using Lilyjazz with LilyPond 2.25.11

2024-01-20 Thread Jeff Kopmanis
ed with convert.ly before using them - > and the fonts copied into Lilypond's font folder. > > Normally these packages survive the upgrade or throw errors if they > haven't. 2.25.11 compilations proceed without error but don't result in any > "jazz style" forma

Using Lilyjazz with LilyPond 2.25.11

2024-01-20 Thread Laurie Savage
Hi, I use the LilyJazz package (lilyjazz.ily, jazzchords.ily, and jazzextras.ily) to prepare lead sheets. These packages have to be upgraded with convert.ly before using them - and the fonts copied into Lilypond's font folder. Normally these packages survive the upgrade or throw errors if

Re: Help using a Scheme variable in a function

2024-01-06 Thread Matthew Fong
Ah ha! Thank you, David! \override #`(line-width . ,rubricsWidthSU) does indeed work. I have to be mindful of the environment I'm using the variable in. Many thanks, mattfong On Sat, Jan 6, 2024 at 3:43 PM David Kastrup wrote: > David Kastrup writes: > > > Davi

Re: Help using a Scheme variable in a function

2024-01-06 Thread David Kastrup
David Kastrup writes: > David Kastrup writes: > >> Matthew Fong writes: >> >>> I tried the following inside the function, and all generate errors. I would >>> like to use the value of rubricsWidthSU in this override. >>> >>> \override #'(line-width . \rubricsWidthSU) >>> \override #'(line-width

Re: Help using a Scheme variable in a function

2024-01-06 Thread David Kastrup
David Kastrup writes: > Matthew Fong writes: > >> I tried the following inside the function, and all generate errors. I would >> like to use the value of rubricsWidthSU in this override. >> >> \override #'(line-width . \rubricsWidthSU) >> \override #'(line-width . #rubricsWidthSU) >> \override #

Re: Help using a Scheme variable in a function

2024-01-06 Thread David Kastrup
Matthew Fong writes: > I tried the following inside the function, and all generate errors. I would > like to use the value of rubricsWidthSU in this override. > > \override #'(line-width . \rubricsWidthSU) > \override #'(line-width . #rubricsWidthSU) > \override #'(line-width . ,rubricsWidthSU)

Re: Help using a Scheme variable in a function

2024-01-06 Thread Matthew Fong
I tried the following inside the function, and all generate errors. I would like to use the value of rubricsWidthSU in this override. \override #'(line-width . \rubricsWidthSU) \override #'(line-width . #rubricsWidthSU) \override #'(line-width . ,rubricsWidthSU) Many thanks, mattfong On Sat, Ja

Help using a Scheme variable in a function

2024-01-06 Thread Matthew Fong
Hello everyone, I'm feeling somewhat confounded by LilyPond Scheme variables. I've created some global variables that I want to use in functions so I change up some custom spacing only one (as these may vary with staff size) I defined the following #(define kOneStaffUnitInInches 0.0761) #(define

Setting paper indents using Scheme code

2024-01-04 Thread Nate Whetsell
, remembering the largest widths, and then reporting those widths (using ly:message) so they can be used as indents in a paper block. It would be better, though, if the engraver set paper indents directly using (I believe) ly:output-def-set-variable! <https://lilypond.org/doc/v2.25/Documentat

Re: using partcombine with different clefs, repeats, text

2023-11-12 Thread Leo Correia de Verdier
terms of cutting and pasting, moving things > around manually, and not in terms of how to notate anything clearly. Here > goes: > > He has a song for soprano, baritone, and piano. The song has four verses, > alternating between the two voices (the baritone, weirdly, needs to

Re: using partcombine with different clefs, repeats, text

2023-11-12 Thread N. Andrew Walsh
; around manually, and not in terms of how to notate anything clearly. Here > goes: > > He has a song for soprano, baritone, and piano. The song has four verses, > alternating between the two voices (the baritone, weirdly, needs to read a > treble clef, so I'm using treble_8 for

using partcombine with different clefs, repeats, text

2023-11-12 Thread N. Andrew Walsh
has four verses, alternating between the two voices (the baritone, weirdly, needs to read a treble clef, so I'm using treble_8 for him). However, he wants to repeat the entire song (ie, enclose the four verses in a '\repeat volta {}' expression), *but* he wants the voices to altern

Re: Using markup-like functions outside of markup (layout/props)

2023-09-23 Thread Jean Abou Samra
> Just quickly though, is that to say that it's hard to inject the layout and > props outside of a markup command/block?  This is a bit like asking if it's hard to find a book outside of a library. Not really, but finding the specific book that you want may or may not be feasible. signature.as

Re: Using markup-like functions outside of markup (layout/props)

2023-09-23 Thread Kyle Baldwin
Jean - Thank you again, I think I can fiddle with this and make this work. Just quickly though, is that to say that it's hard to inject the layout and props outside of a markup command/block? -kwb > On Sep 23, 2023, at 12:43 PM, Jean Abou Samra wrote: > > Take a look at > > https://list

Re: Using markup-like functions outside of markup (layout/props)

2023-09-23 Thread Jean Abou Samra
Take a look at https://lists.gnu.org/archive/html/lilypond-user/2023-09/msg00136.html which I posted just a few days ago in reply to another question. It's a piece of Scheme code that auto-adds a blank page when needed. signature.asc Description: This is a digitally signed message part

Re: Using markup-like functions outside of markup (layout/props)

2023-09-23 Thread Kyle Baldwin
Jean - The part I care about is whether it starts on a left or right hand page. What I am doing is the following: - Compile lilypond score - Output meta data to a CSV file (I'm using scheme to write out variables like the title and such. This is where I would like to add the met

Re: Using markup-like functions outside of markup (layout/props)

2023-09-23 Thread Jean Abou Samra
g the layout and props properties without > using a \markup command. > > Does anyone have any guidance on this and/or a better way to get the first > page programmatically. Thank you! By "write the first page", do you mean "write the first page as a PDF" or similar, or &

Using markup-like functions outside of markup (layout/props)

2023-09-23 Thread Kyle Baldwin
and props properties without using a \markup command. Does anyone have any guidance on this and/or a better way to get the first page programmatically. Thank you! -Kyle

Re: Trouble using version 2.20.0 & 2.24.1

2023-09-05 Thread Ian West
Ian West a écrit : >> >> Dear Jean Abou Samra, >> I have now read and followed the Frecobaldi set-up instruction. >> Successfully. Using the latest version of Frescobaldi and of Lilypond >> (2.24.2). >> It will take me a while to get used to the interface

Re: Trouble using version 2.20.0 & 2.24.1

2023-09-05 Thread Jean Abou Samra
> Le 1 sept. 2023 à 21:27, Ian West a écrit : > > Dear Jean Abou Samra, > I have now read and followed the Frecobaldi set-up instruction. > Successfully. Using the latest version of Frescobaldi and of Lilypond > (2.24.2). > It will take me a while to get

Re: Trouble using version 2.20.0 & 2.24.1

2023-09-05 Thread Paul Hodges
From: Ian West Yes! I have now followed the instructions for running LilyPond with Frescobaldi. But I do not like it.  Indeed, I will not use it. The coding (on the left) is far too small for my eyes. (I was in the habit of using font-size 18 when typing in the code.) And I have not

Re: Trouble using version 2.20.0 & 2.24.1

2023-09-05 Thread Jean Abou Samra
y eyes. (I was in the habit of using font-size 18 when typing in the > code.) And I have not found a way to enlarge it. (The music I can enlarge, > but is in any case readable.) You can enlarge the font size in the preferences: "Edit" menu > "Preferences" > "

Re: Trouble using version 2.20.0 & 2.24.1

2023-09-05 Thread Ian West
Hi Jean Abou Samra, Yes! I have now followed the instructions for running LilyPond with Frescobaldi. But I do not like it. Indeed, I will not use it. The coding (on the left) is far too small for my eyes. (I was in the habit of using font-size 18 when typing in the code.) And I

Re: Trouble using version 2.20.0 & 2.24.1

2023-09-01 Thread Jean Abou Samra
Le vendredi 01 septembre 2023 à 17:38 +0100, Ian West a écrit : > I have used  Lilypond very happily for many years on Apple laptops (2.12.3, > 2.18.2). > My latest computer is a MacBook Air running OS Ventura 13.4.1 with M2. I > understood I needed a 64 bit version of Lilypond, downloaded 2.20.0 A

Trouble using version 2.20.0 & 2.24.1

2023-09-01 Thread Ian West
I have used Lilypond very happily for many years on Apple laptops (2.12.3, 2.18.2). My latest computer is a MacBook Air running OS Ventura 13.4.1 with M2. I understood I needed a 64 bit version of Lilypond, downloaded 2.20.0 August 2022, and ran it successfully for 12 months till 1st August 202

Re: Using a custom bitmap as a character?

2023-08-23 Thread Alasdair McAndrew
Thank you all very much - yes, I know about potrace, although I haven't used it yet. However, the \image command sounds like more the sort of thing I wanted - just a cheap and dirty method of inserting images to see (roughly) what they might look like. cheers, Alasdair On Wed, 23 Aug 2023 at 21:

Re: Using a custom bitmap as a character?

2023-08-23 Thread Jean Abou Samra
Le mercredi 23 août 2023 à 13:57 +0200, Jean Abou Samra a écrit : > > The tool looks quite impressive. OTOH, in 2.25, there's \image to use > a PNG file, so you don't necessarily need to convert the bitmap to a > vector graphics form. (And EPS can contain bitmaps too.) signature.asc Descripti

Re: Using a custom bitmap as a character?

2023-08-23 Thread Jean Abou Samra
Le mercredi 23 août 2023 à 11:40 +, Werner LEMBERG a écrit : > > I am slowly creating a font to be used for tablature ... so far I > > have bitmaps of a couple of characters.  I'd like to try them out > > and get an idea how they look.  Is there any way I can replace a > > character with a smal

Re: Using a custom bitmap as a character?

2023-08-23 Thread Werner LEMBERG
> I am slowly creating a font to be used for tablature ... so far I > have bitmaps of a couple of characters. I'd like to try them out > and get an idea how they look. Is there any way I can replace a > character with a small scaled bitmap? Not directly. You would have to convert the bitmap t

Using a custom bitmap as a character?

2023-08-23 Thread Alasdair McAndrew
I am slowly creating a font to be used for tablature ... so far I have bitmaps of a couple of characters. I'd like to try them out and get an idea how they look. Is there any way I can replace a character with a small scaled bitmap? I know that Lilypond doesn't support bitmapped fonts, but as I

Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Knute Snortum
I like the second way and it works great! Thanks. -- Knute Snortum On Fri, Aug 18, 2023 at 2:59 PM Jean Abou Samra wrote: > Oh, and one last thing: Abraham is right that it should be "lilyjazz" in > lowercase letters, because LilyPond's own search just looks for the exact > file name (though

Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Jean Abou Samra
Oh, and one last thing: Abraham is right that it should be "lilyjazz" in lowercase letters, because LilyPond's own search just looks for the exact file name (though Fontconfig would accept "LilyJAZZ"). signature.asc Description: This is a digitally signed message part

Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Jean Abou Samra
ontconfig but just searches them in the normal LilyPond include path. What's messier still is that LilyPond *sometimes* searches music fonts using Fontconfig. Specifically, when writing dynamics like "mf", the music font is used just like a normal text font, and in that case it will

Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Knute Snortum
Still end with: fatal error: cannot find font: `lilyjazz-11' Exited with return code 1. -- Knute Snortum On Fri, Aug 18, 2023 at 1:29 PM Abraham Lee wrote: > Instead of “LilyJAZZ” for the music and brace names, try lower case > “lilyjazz”. If I remember right, it’s case sensitive since it’s

Re: Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Abraham Lee
Instead of “LilyJAZZ” for the music and brace names, try lower case “lilyjazz”. If I remember right, it’s case sensitive since it’s looking for the exact file name prefix. Best, Abraham On Fri, Aug 18, 2023 at 2:11 PM Knute Snortum wrote: > I'm trying to use the LilyPond 2.24 version ly:font-

Can't find font in LilyJazz when using 2.24's ly:font-config-add-directory

2023-08-18 Thread Knute Snortum
I'm trying to use the LilyPond 2.24 version ly:font-config-add-directory with LilyJazz (https://github.com/OpenLilyPondFonts/lilyjazz). My procedure: 1) Download a fresh LillyJazz. 2) Convert to 2.24 (AllOfMe.ly, jazzchords.ily, lilyjazz.ily, jazzextras.ily) 3) Add the ly:font-config-add-directo

Re: Using functions "parenthesize" in lilypond 2.24.1

2023-07-11 Thread Jean Abou Samra
Le mardi 11 juillet 2023 à 12:19 +0300, Виноградов Юрий a écrit : > Hello. I'm typing an accordion part. And in my left hand I need to put a note > in the \parenthesize function. But since this note takes up space in the > measure. Example: beat 2/4 and note 1/8 - it turns out to be 5/8 in a bea

Re: Using functions "parenthesize" in lilypond 2.24.1

2023-07-11 Thread Виноградов Юрий
Ok. Thanks. Юрий Виноградов12:57, 11 июля 2023 г., Jean Abou Samra :Le mardi 11 juillet 2023 à 12:54 +0300, Виноградов Юрий a écrit :How will be correct. Tell.To create a new topic on this list, you should send a new email to lilypond-user@gnu.org . You should use the same method as to create a new

Re: Using functions "parenthesize" in lilypond 2.24.1

2023-07-11 Thread Виноградов Юрий
ok. С уважением,Виноградов Юрий.11.07.2023, 12:59, "David Kastrup" :Виноградов Юрий writes: 12:51, 11 июля 2023 г., David Kastrup :  Please never, never, never, ever quote an entire week's digest to the  list with any new post to the list. The entirety of your m

Re: Using functions "parenthesize" in lilypond 2.24.1

2023-07-11 Thread David Kastrup
Виноградов Юрий writes: > 12:51, 11 июля 2023 г., David Kastrup : >> >> Please never, never, never, ever quote an entire week's digest to the >> list with any new post to the list. The entirety of your mail, >> including the last week's digest, will clog up the next week's digest. >> And so t

Re: Using functions "parenthesize" in lilypond 2.24.1

2023-07-11 Thread Jean Abou Samra
Le mardi 11 juillet 2023 à 12:54 +0300, Виноградов Юрий a écrit : > How will be correct. Tell. To create a new topic on this list, you should send a new email to lilypond-user@gnu.org . You should use the same method as to create a new email to anybody. You should not take a digest you received a

Re: Using functions "parenthesize" in lilypond 2.24.1

2023-07-11 Thread Виноградов Юрий
How will be correct. Tell.Юрий Виноградов12:51, 11 июля 2023 г., David Kastrup :Виноградов Юрий writes: Hello. I'm typing an accordion part. And in my left hand I need to put a note in the \parenthesize function. But since this note takes up space in the measure. Example: bea

Re: Using functions "parenthesize" in lilypond 2.24.1

2023-07-11 Thread David Kastrup
Виноградов Юрий writes: > Hello. I'm typing an accordion part. And in my left hand I need to put > a note in the \parenthesize function. But since this note takes up > space in the measure. Example: beat 2/4 and note 1/8 - it turns out to > be 5/8 in a beat. To make everything look good in the ot

Using functions "parenthesize" in lilypond 2.24.1

2023-07-11 Thread Виноградов Юрий
Hello. I'm typing an accordion part. And in my left hand I need to put a note in the \parenthesize function. But since this note takes up space in the measure. Example: beat 2/4 and note 1/8 - it turns out to be 5/8 in a beat. To make everything look good in the other hand, I either put the size of

Re: Using \after 8 \turn with beamed notes when stem is up produces a turn under the beam

2023-06-26 Thread Knute Snortum
Thanks guys. The \tweak did what I wanted. -- Knute Snortum

Re: Using \after 8 \turn with beamed notes when stem is up produces a turn under the beam

2023-06-25 Thread Kieren MacMillan
Hi David, > I was not thinking in spatial dimensions. > > Maybe "linear" or "well-ordered" would have been a better expression. > The priority system essentially states the order of type X and type Y > independent of whether a grob of type Z needs to be accommodated as > well. Ah, yes… there’s t

Re: Using \after 8 \turn with beamed notes when stem is up produces a turn under the beam

2023-06-25 Thread David Kastrup
Kieren MacMillan writes: > Hi David, > >> whether the one-dimensional outside-staff-priority system >> is even well-suited for expressing the desired rules/constraints > > Are you able to say a little more about what you’re thinking there? > (The meaning I infer is that a two-dimensional system c

Re: Using \after 8 \turn with beamed notes when stem is up produces a turn under the beam

2023-06-25 Thread Kieren MacMillan
Hi David, > whether the one-dimensional outside-staff-priority system > is even well-suited for expressing the desired rules/constraints Are you able to say a little more about what you’re thinking there? (The meaning I infer is that a two-dimensional system could allow for a L/R priority, whic

Re: Using \after 8 \turn with beamed notes when stem is up produces a turn under the beam

2023-06-25 Thread David Kastrup
Jean Abou Samra writes: > Le samedi 24 juin 2023 à 16:54 -0700, Knute Snortum a écrit : >> Hi, community. >> >> I was using \after 8 \turn to produce a delayed turn with beamed eighth-notes >> in voice one and the turn renders under the beam.  Here is an M

  1   2   3   4   5   6   7   8   9   10   >