Re: showing alternative chordname

2015-08-03 Thread Michael Hendry
> On 3 Aug 2015, at 10:16, David Kastrup wrote: > > bart deruyter writes: > >> Hi all, >> >> I got stuck here in a transcription of a folk tune. I'd like to show a >> possible alternative for a chord e.g.: >> C(Gm7). It's written like this in the orignal, but I'm not sure if that's >> the cor

Re: how to engrave

2015-08-20 Thread Michael Hendry
> On 20 Aug 2015, at 17:43, Matej Kosik > <5764c029b688c1c0d24a2e97cd7...@gmail.com> wrote: > > Dear all, > > I am trying to figure out how to include the so called > > Fm(maj7) > > chord. > > With the standard modifiers: > http://www.lilypond.org/doc/v2.18/Documentation/notation/commo

Re: OT: Beauty of programming languages

2015-09-11 Thread Michael Hendry
I’m a 68 year-old retired GP. I took up guitar aged 15, playing folk and rock stuff by ear, although I had learned piano long enough in primary school to know what a staff looked like, and I played in folk clubs and bands until medicine took over. After a long career break(!), I took up guitar

Re: Frescobaldi creates the pdf but doesn't export it?

2015-10-21 Thread Michael Hendry
Coming late to the party, but I think this may be linked to a bug which I notified to the Frescobaldi team earlier this year: https://github.com/wbsoft/frescobaldi/issues/646 It happened when I reopened a Lilypond file after finding an error in

Re: Frescobaldi creates the pdf but doesn't export it?

2015-10-22 Thread Michael Hendry
> On 22 Oct 2015, at 02:02, tisimst wrote: > > BB, > > I've been using Frescobaldi (Windows & Linux) for a long time now and I've > never experienced what you describe (in terms of needing to close the file > and reopening to get the output files I specify). What kind of computer/OS > specs

Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-19 Thread Michael Hendry
When I've finished a jazz chart, I'll want to produce separate parts for several transposing instruments, but while I'm working on the entry of the melody and chords in concert pitch I only need to produce one .pdf file. Obviously, I can comment out the sections I don't want during data entry wor

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-19 Thread Michael Hendry
Helge Kruse-2 wrote: > > Am 18.02.2012 00:30, schrieb Michael Hendry: >> >> Obviously, I can comment out the sections I don't want during data entry >> work, and remove the comments once the work is complete, but it would be >> handy to be able

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-19 Thread Michael Hendry
Shevek wrote: > > Have you thought about how to use tags for this? > > Saul > > On Friday, February 17, 2012 03:30:51 PM Michael Hendry wrote: >> Obviously, I can comment out the sections I don't want during data entry >> work, and remove the comments once

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-20 Thread Michael Hendry
lilypond-7 wrote: > > > Please forgive my exercise in total conjecture, as I have not > tested any of the concepts below, but perhaps UNIX's m4 macro > preprocessor can provide the tools you seek without requiring any > changes to LilyPond. > > Since that I infer you possess knowledge of the

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-20 Thread Michael Hendry
David Kastrup wrote: > > Michael Hendry writes: > >> I've been experimenting with \tag, but it doesn't seem to be possible >> to use it in the \book {} context. > > Care to show your experiments? > > -- > David Kastrup > > OK -

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-20 Thread Michael Hendry
David Kastrup wrote: > > Michael Hendry writes: > >> David Kastrup wrote: >>> >>> Michael Hendry writes: >>> >>>> I've been experimenting with \tag, but it doesn't seem to be possible >>>> to use it in the \boo

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-20 Thread Michael Hendry
David Kastrup wrote: > > Michael Hendry writes: > >>> Ok, tags work with music, not with books. Here is what I would suggest: >>> >>> ConcertBook = >>> \book { >>> ... >>> } >>> >>> and then you can at a

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-24 Thread Michael Hendry
David Kastrup wrote: > > David Kastrup writes: > > > I picked the \paper settings of the book. > > Updates: > Labels: Patch-new > > Comment #5 on issue 2343 by d...@gnu.org: Faulty file-naming when > outputting multiple \books > http://code.google.com/p/lilypond/issues/detail?id=2343#

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-24 Thread Michael Hendry
David Kastrup wrote: > > > You can use > > includeGuitar = ##t > includeConcert = ##f > includeTrumpet = ##t > includeAlto = ##f > > at the top and then do > > $(if includeGuitar GuitarBook) > $(if includeConcert ConcertBook) > $(if includeTrumpet TrumpetBook) > $(if includeAlto AltoBook) >

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-24 Thread Michael Hendry
Francisco Vila wrote: > > 2012/2/24 Michael Hendry : >> David Kastrup wrote: >>> You can use >>> includeGuitar = ##t >>> includeConcert = ##f >>> includeTrumpet = ##t >>> includeAlto = ##f >>> at the top and then do >

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-25 Thread Michael Hendry
Francisco Vila wrote: > > 2012/2/25 Michael Hendry : >> I've compiled > > compiled? > >> and installed lilypond-2.15.9 (the latest version I could >> find) > > 2.15.30 is in http://lilypond.org/development , where did you search > for it? Fo

Re: Is there an equivalent of #define ... #ifndef ... #endif in lilypond?

2012-02-26 Thread Michael Hendry
David Kastrup wrote: > > > Oh, the $(if ) method can perfectly handle variables which are a book. > It is just LilyPond that does not accept a book identifier at top > level. So you have to write something like > \book { $(if includeGuitar GuitarBook) } > and rely on an empty book not having a

Re: Four Bars per Line/System, again :)

2015-01-25 Thread Michael Hendry
Experimenting with custom-line-breaks-engraver, I've found that it doesn't work correctly if the number of bars to be printed per line exceeds 9, e.g. \consists #(custom-line-breaks-engraver '(10)) A 37 bar song comes out with 10, 10, 5, 5 and 7 bars per line, instead of the expected 1

Re: Four Bars per Line/System, again :)

2015-01-25 Thread Michael Hendry
> On 25 Jan 2015, at 15:15, tisimst [via Lilypond] > wrote: > > Michael, > > On Sun, Jan 25, 2015 at 7:49 AM, Michael Hendry [via Lilypond] <[hidden > email] > wrote: >> Experimenting with custom-line-breaks-engraver, I've found that it doesn't &g

Re: Need to suppress bar number checking in midi block

2015-01-25 Thread Michael Hendry
Does anyone have a solution for this issue? Like Michael Ellis, I like to use both "|" and \barNumberCheck to pick up rhythm errors and missing or duplicated bar that I've made, and I use MIDI output to pick up wrong notes in my transcriptions. I can usually pick out the erroneous \barNumberCheck

Re: Four Bars per Line/System, again :)

2015-01-25 Thread Michael Hendry
Of course - I should have spotted that! Interesting, though that with the override commented out I can get 9 bars per line, but if I exceed that by one I get 10, 10, 5, 5, 7, and the lines with 5 bars in them are sparsely filled - they could easily be 8 or 9. Many thanks - I missed the RTFM instr

Re: Four Bars per Line/System, again :)

2015-01-25 Thread Michael Hendry
Thanks, David. I'm very much at the stage of using example files and modifying them so that they work for me as far as Lilypond is concerned - and can't even plod through your Scheme function definition to work out what it's doing! 4 bars per line or 8 bars per line will do everything I want - th

Re: Need to suppress bar number checking in midi block

2015-01-26 Thread Michael Hendry
> Maybe: > > mymusic = { > \time 4/4 > \repeat volta 2 { > g'1 > \barNumberCheck #2 > } > c'1 > \displayMusic > \barNumberCheck #3 > } > > \book { > \score { > \mymusic > \layout {} > } > \score { > { \unfoldRepeats \set Score.currentBarN

String Concatenation, and Use of Unicode characters

2015-03-02 Thread Michael Hendry
l use the flat sign from another font, but I’d like to be able to define a flat sign as a variable, and append it to the piece markup when creating the books for trumpet and alto. Thanks in advance, Michael Hendry \version "2.18.0" \include "LilyJAZZ.ily" \in

Re: String Concatenation, and Use of Unicode characters

2015-03-02 Thread Michael Hendry
Begin forwarded message:From: Michael Hendry <hendry.mich...@gmail.com>Subject: Re: String Concatenation, and Use of Unicode charactersDate: 2 March 2015 22:16:34 GMTTo: thomasmorle...@gmail.comBrilliant!My only reservation is that I’ll have to treat your code as a black box, as I’m not (

Re: Subject: String Concatenation, and Use of Unicode characters [sic]

2015-03-02 Thread Michael Hendry
On 3 Mar 2015, at 05:58, Flaming Hakama by Elaine <ela...@flaminghakama.com> wrote:%{> Date: Mon, 2 Mar 2015 16:40:27 +0000> From: Michael Hendry <hendry.mich...@gmail.com>> Subject: String Concatenation, and Use of Unicode characters> > Typically, I want PDF output in

Re: Subject: String Concatenation, and Use of Unicode characters [sic]

2015-03-07 Thread Michael Hendry
> On 7 Mar 2015, at 11:22, Davide Liessi wrote: > > Il 03/03/15 07.56, Michael Hendry ha scritto: >>> Forgive me for suggesting, but I suggest it improves mental health to >>> think of transpose in the form: >>> >>>\transpose "to"

Re: Ace editor - Lilypond support

2015-03-09 Thread Michael Hendry
> On 9 Mar 2015, at 13:34, Erik Nilsson wrote: > > > Hi, > > I'm considering creating a syntax highlighter for Lilypond code for the Ace > javascript code editor (http://ace.c9.io/). I think it would be useful for > tools like for instance weblily (http://www.weblily.net/). > > Is there a

Re: Help please with alternate jazz chord naming system

2015-03-09 Thread Michael Hendry
> On 9 Mar 2015, at 17:31, Peter Teeson wrote: > > I do not know how to set things up to use the alternate jazz chord naming > system. > Notation p 392 "An alternate jazz chord system has been developed using these > modifications. " > > The snippet shows what I am doing now. > But the 2nd an

Re: Subject: String Concatenation, and Use of Unicode characters [sic]

2015-03-09 Thread Michael Hendry
> On 9 Mar 2015, at 19:48, Flaming Hakama by Elaine > wrote: > > > From: Michael Hendry > <mailto:hendry.mich...@gmail.com>> > > To: Davide Liessi mailto:davide.lie...@gmail.com>> > > Cc: Lilypond-User Mailing List > <mailto:lilyp

Re: Subject: String Concatenation, and Use of Unicode characters [sic]

2015-03-10 Thread Michael Hendry
> On 10 Mar 2015, at 02:14, Flaming Hakama by Elaine > wrote: > > > > BTW, I also tend to prepare lead sheets in F and A. Of course, you may not > > need this. But if you are preparing a template, it might be helpful to > > include other common transpositions. > > OK. The choice there is

Re: How to write this chord in Roemer?

2015-03-13 Thread Michael Hendry
> On 13 Mar 2015, at 21:38, Peter Teeson wrote: > > Hi Tim: > Thanks for the file. So far so good. > Since I am using \include "english.ly " I replaced all > uses of the accidental indicators "es" & "is" with "f" and "s". > If you want I can send you that amended file. > >

Re: musicxml2ly

2015-03-20 Thread Michael Hendry
> On 19 Mar 2015, at 23:20, Martin Tarenskeen wrote: > > > > On Fri, 20 Mar 2015, Noeck wrote: > >> Hi Craig, >> >>> Do I append "for f in *.xml" to the end of my command; >> >> No, you put all your command within the for loop: >> >> for f in *.xml; do >> /Applications/LilyPond.app/Content

Re: Using lilypond examples in an essay or text document

2015-04-04 Thread Michael Hendry
> On 4 Apr 2015, at 21:10, Urs Liska wrote: > > > > Am 4. April 2015 21:41:17 MESZ, schrieb Daniel Contreras > : >> subject line says it all, I want to use Lily Pond in a text document. >> Can someone point me in the right direction to achieve this? Thanks a >> bunch I am using version 2.18.

Re: "procedure" vs. "function"

2015-04-18 Thread Michael Hendry
> On 18 Apr 2015, at 11:15, Richard Shann wrote: > > On Sat, 2015-04-18 at 11:51 +0200, Urs Liska wrote: >> Hi all, >> >> I just stumbled over a terminology issue: are "procedure" and "function" >> synonyms in Scheme or do they refer to different things? > The Guile reference manual uses the t

Re: "procedure" vs. "function"

2015-04-18 Thread Michael Hendry
> On 18 Apr 2015, at 13:06, Brian Barker wrote: > > At 12:55 18/04/2015 +0100, Michael Hendry wrote: >> I think it was Pascal that introduced a distinction between a Procedure >> (which does something without returning a value) and a Function (which does >> so

Re: Do we really offer the future?

2015-04-23 Thread Michael Hendry
> On 23 Apr 2015, at 01:48, Kieren MacMillan > wrote: > > Hi Stephen (et al.) > >> anyway I tried a few examples and used %1a %2a etc for measures and used the >> bar check (|) as an end >> eg. >> %1a >> music | > This would be reliant on meticulous use of of the “%NNNa" and “|” pairs to

Re: Do we really offer the future?

2015-04-26 Thread Michael Hendry
> On 26 Apr 2015, at 15:16, H. S. Teoh wrote: > > On Sun, Apr 26, 2015 at 06:15:13AM +, Keith OHara wrote: >> Michael Hendry gmail.com> writes: >> >>> I routinely put the bar checks at the _beginnings_ of the bars, >>> thus... >>

Re: Do we really offer the future?

2015-04-26 Thread Michael Hendry
> On 26 Apr 2015, at 15:36, H. S. Teoh wrote: > > On Sun, Apr 26, 2015 at 10:23:26AM -0400, Kieren MacMillan wrote: >> Hi, >> >>> Am I the only one who puts bar checks at *both* the beginning and end of a >>> bar? >>> >>> | a4 b c d | >>> | e f g a | >> >> You’re the only one I’ve ev

Re: Do we really offer the future?

2015-04-26 Thread Michael Hendry
> On 27 Apr 2015, at 00:18, Urs Liska wrote: > > > > Am 27.04.2015 um 01:12 schrieb Simon Albrecht: >> Am 26.04.2015 um 23:53 schrieb Michael Hendry: >>> >>>> On 26 Apr 2015, at 15:36, H. S. Teoh >>> <mailto:hst...@quickfur.ath.cx>>

Re: my favorite bug :-)

2015-05-01 Thread Michael Hendry
On 1 May 2015, at 08:54, Werner LEMBERG wrote: > > >> for example create a file "lines.ly" with a minimal content >> >> \version "2.19.19" >> {c' d' e' f'} >> >> and compile ... > > Nice! I wasn't aware that lilypond can put *that* much information > into four note symbols :-) > > Please su

Re: my favorite bug :-)

2015-05-01 Thread Michael Hendry
> On 1 May 2015, at 09:41, Martin Tarenskeen wrote: > > > > On Fri, 1 May 2015, Michael Hendry wrote: > >> On 1 May 2015, at 08:54, Werner LEMBERG wrote: >>> >>> >>>> for example create a file "lines.ly" with

Re: slur syntax

2015-05-24 Thread Michael Hendry
> On 23 May 2015, at 23:19, Gianmaria Lari wrote: > > Yes! Thank you Peter (and Urs), I think now it's clear > > Lilypond use a "postfix" syntax. To apply a function 'f' to the note 'a' the > lilypond syntax is "a \f" and not viceversa. Because the open parenthese is > like a function (a f

Fit-to-single-page for lead sheets

2015-07-17 Thread Michael Hendry
I use Lilypond to produce lead sheets for jazz players, which conventionally have four bars per line and are adjusted in size to fit on a single page. It’s simple enough to use… #(set-global-staff-size 19) …for example, to get the concert instrument version to fit the page, but I often find t

Re: Fit-to-single-page for lead sheets

2015-07-17 Thread Michael Hendry
> On 17 Jul 2015, at 09:19, Robin Bannister wrote: > > Robert Schmaus wrote: > > >> Maybe that's what you're looking for ... > > Or, more directly: page-count > to be found further down in the same section. > > > Cheers, > Robin systems-per-page doesn’t seem to work for me, leaving a sing

Re: sharping naturals

2015-07-23 Thread Michael Hendry
> On 23 Jul 2015, at 19:09, Richard Shann wrote: > > On Thu, 2015-07-23 at 19:40 +0200, Urs Liska wrote: >>> Am 23.07.2015 um 19:15 schrieb Christopher R. Maden: They will look different, but will be the same notes. The music describes itself; the key signature affects presentation.[*

Re: Fret Diagrams in Open Office Writer

2015-07-25 Thread Michael Hendry
> On 25 Jul 2015, at 15:45, Socrates Leptos wrote: > > Dear lilypond users, > > I am new to lilypond so I half expect my question to be so ridiculous... I > hope that you believe me when I say I made every effort within my still > confused mind to solve this issue to no avail. Here goes... >

Re: Chord options in leadsheets

2020-02-22 Thread Michael Hendry
> On 22 Feb 2020, at 10:39, Wols Lists wrote: > > On 22/02/20 09:11, hendry.mich...@gmail.com wrote: >> >> >> >> I use Lilypond to prepare jazz leadsheets. Most of the time, this is >> straightforward, but the scree

Re: Chord options in leadsheets

2020-02-22 Thread Michael Hendry
> On 22 Feb 2020, at 11:01, Jacques Menu wrote: > > Hello Hendry, > > You can have several ChordNames contexts and use \parenthesize in the > corresponding \chordmode definitions. > > What I don’t know is how to have only a single pair of parentheses around the > two harmonies in the attached

Trouble re-subscribing after temporary unsubscription

2020-08-19 Thread Michael Hendry
Returning to the mailing list after what I planned would be a temporary period away, I find I’m unable to log in using my old details, and that the “Remind” feature doesn’t work, in that I appear to need a valid password in order to be reminded! Is there something obvious that I’m missing? Reg

Re: Trouble re-subscribing after temporary unsubscription

2020-08-19 Thread Michael Hendry
> On 19 Aug 2020, at 14:44, David Wright wrote: > > On Wed 19 Aug 2020 at 11:26:56 (+0100), Michael Hendry wrote: >> Returning to the mailing list after what I planned would be a temporary >> period away, I find I’m unable to log in using my old details, and that the

Re: convert-ly error

2021-01-12 Thread Michael Hendry
y -e alice2.ly "C:\LilyPond220\usr\bin\convert-ly -e alice2.ly” looks more promising. Regards, Michael Hendry

Re: a5 pages

2021-03-20 Thread Michael Hendry
> On 20 Mar 2021, at 21:49, Francesco Petrogalli > wrote: > > Hi all, > > Is there a command that allows me to set the size of the text font and > the note fonts to a value that would result in printing the content on > an a5 paper with the same aspect of an a4 print? I know there is a > comman

Re: Can I put the F key sign # down one octave? *KeySignature*

2021-06-30 Thread Michael Hendry
> On 27 Jun 2021, at 02:45, darki...@jesusgod-pope666.info wrote: > > If I had just payed more attention to your mail, I went for the link and > tried to figure something out. I should could not sort it out and went for > your post again going to complain :P And there the solution was in the fir

Re: Can I put the F key sign # down one octave? *KeySignature*

2021-06-30 Thread Michael Hendry
> On 30 Jun 2021, at 14:49, darki...@jesusgod-pope666.info wrote: > > , No I don't think so... The Problem I had, and as far as I know my other > friend that started on the Tin Whistle - was to figure out what they in the > first place was. As the # is so far up on the line - you never get t

Re: Testers wanted

2021-07-14 Thread Michael Hendry
> On 13 Jul 2021, at 21:54, Knut Petersen wrote: > > Hi everybody, > > below you find links to four lilypond installers. These installers contain > LilyPond version git ee4513cb238cc (2.23.4) plus an additional patch that > implements a new backend based on cairo. All installers were built wit

Re: Testers wanted

2021-07-14 Thread Michael Hendry
> On 14 Jul 2021, at 09:02, Knut Petersen wrote: > > Hi Michael, > > >>> Mac OS X 10.4–10.14, Intel x86 CPU, 32 bit > >> I’m currently using a late-2012 27” iMac with macOS Catalina 10.15.7, but >> this can’t be upgraded to macOS Big Sur, and a recent whiff of overheated >> circuit-board whe

Re: Testers wanted

2021-07-28 Thread Michael Hendry
On 14 Jul 2021, at 09:02, Knut Petersen wrote: > > Hi Michael, > > >>> Mac OS X 10.4–10.14, Intel x86 CPU, 32 bit > >> I’m currently using a late-2012 27” iMac with macOS Catalina 10.15.7, but >> this can’t be upgraded to macOS Big Sur, and a recent whiff of overheated >> circuit-board when

Re: Testers wanted

2021-07-29 Thread Michael Hendry
On 29 Jul 2021, at 09:57, Knut Petersen wrote: > > On 29.07.21 02:41, Michael Hendry wrote: >> >> Hi, Knut. >> >> Now that I’ve settled in to my new iMac (64-bit, X86 processor, Mac OS >> 11,5.1) I’ve got all my usual utilities running in the new

Re: Testers wanted

2021-08-04 Thread Michael Hendry
On 4 Aug 2021, at 15:50, Andrew Culver wrote: > > Hello Michael Hendry > > FWIW - I installed Lilypond 2.22.1 on Catalina using MacPorts. “nerdling" has > also amiably posted version 2.23.3 there as of now. > > I made a little cheatsheet after my own succ

Re: Testers wanted

2021-08-06 Thread Michael Hendry
> On 4 Aug 2021, at 15:50, Andrew Culver wrote: > > Hello Michael Hendry > > FWIW - I installed Lilypond 2.22.1 on Catalina using MacPorts. “nerdling" has > also amiably posted version 2.23.3 there as of now. > > I made a little cheatsheet after my own s

Re: Testers wanted

2021-08-08 Thread Michael Hendry
On 6 Aug 2021, at 21:45, Michael Hendry wrote: > > > >> On 4 Aug 2021, at 15:50, Andrew Culver wrote: >> >> Hello Michael Hendry >> >> FWIW - I installed Lilypond 2.22.1 on Catalina using MacPorts. “nerdling" >> has also amiably posted vers

Re: emails innummerable

2018-11-06 Thread Michael Hendry
> On 6 Nov 2018, at 18:59, Mats Bengtsson wrote: > > > > On 2018-11-06 03:23, David Linn wrote: >> ... > >> I can raise "the specified limit" and potentially reduce the number of >> digests per day, but it will probably increase the number of large messages >> *everyone* on the digest list r

Re: Bug? \clef makes Staff disappear

2018-11-12 Thread Michael Hendry
> On 12 Nov 2018, at 17:30, Malte Meyn wrote: > > % > \version "2.19.82" > > << > \chords { c } > \relative { \clef bass c' } > >> > % It works correctly for me, but I’m using Lilypond version 2.18.2. I’ve always used “\relative” with a

Re: Section labels

2018-11-14 Thread Michael Hendry
> On 14 Nov 2018, at 09:09, sean read wrote: > > I'm trying to write out lead sheets with section labels like you see on > modern charts with a and b section labelled by a bold letter in a box. Is > there a standardised way to do this in lilypond? I couldn't seem to find > anything in the docu

Re: problème pour l’installation de Frescobaldi 3.0 et de lilypond 2.19.82 / problem for the installation of Frescobaldi 3.0 and lilypond 2.19.82

2018-11-19 Thread Michael Hendry
> On 19 Nov 2018, at 06:07, Gilles QUESNE wrote: > > Bonjour à tous. > J’utilise High Sierra version 10.13.6 sur un iMac (27 pouces, mi-2011) > Processeur 3,1 GHz Intel Core i5 > Mémoire 6 Go 1333 MHz DDR3 > Disque de démarrage OS X Base System > Graphisme AMD Radeon HD 6970M 1024 Mo > > Je dois

Re: lilypond 2.19.82 now in macports

2018-12-01 Thread Michael Hendry
> On 1 Dec 2018, at 22:19, Karlin High wrote: > > On 12/1/2018 3:50 PM, Werner LEMBERG wrote: >> It seamlessly integrates into macports, which means it can be easily >> installed with `port install lilypond-devel'. It can be also easily >> removed with a similar command. > > How hard would

Re: lilypond 2.19.82 now in macports

2018-12-01 Thread Michael Hendry
> On 1 Dec 2018, at 22:54, Sven Axelsson wrote: > > On Sat, 1 Dec 2018 at 23:30, Michael Hendry wrote: > > On 1 Dec 2018, at 22:19, Karlin High wrote: > > > > On 12/1/2018 3:50 PM, Werner LEMBERG wrote: > >> It seamlessly integrates into macports, which mea

Re: LilyPond can't engrave 16 pages of music

2018-12-22 Thread Michael Hendry
> On 21 Dec 2018, at 23:47, Reggie wrote: > > \version "2.19.82" > { > \time 4/4 > \repeat unfold 1000 { c4 d e f } % TEN PAGES of music > \repeat unfold 1000 { f1 } % + SIX MORE PAGES of music > \repeat unfold 1000 { c4 d e f } % BUT WHEN ADDING MORE PAGES, fail NOW > } Starting lilypond 2

Re: Lilypond not rendering PDF on Mac

2019-01-08 Thread Michael Hendry
> On 8 Jan 2019, at 17:32, Stephen Wilkinson > wrote: > > Sorry, not sure if I've posted this twice > > I've recently installed Lilypond (2.18.2) onto a new Mac (OS X 14.2), but > have run into a problem at the beginning. Lilypond hangs when rendering a > file at the 'Converting to .pdf.' st

Re: Please test new lilypond installers

2019-01-29 Thread Michael Hendry
> On 29 Jan 2019, at 09:19, Knut Petersen wrote: > > Hi everybody > > Urs Liska provides installers for branch master of lilypond, generated by an > updated version of our build system GUB: > https://cloud.ursliska.de/s/QPINwLqJNeVslCu > There you'll find > lilypond-2.21.0-1.darwin-ppc.tar.bz2

Re: Please test new lilypond installers

2019-01-29 Thread Michael Hendry
> On 29 Jan 2019, at 09:19, Knut Petersen wrote: > > Hi everybody > > Urs Liska provides installers for branch master of lilypond, generated by an > updated version of our build system GUB: > https://cloud.ursliska.de/s/QPINwLqJNeVslCu > There you'll find > lilypond-2.21.0-1.darwin-ppc.tar.bz2

Re: Please test new lilypond installers

2019-01-30 Thread Michael Hendry
> On 29 Jan 2019, at 19:00, Urs Liska wrote: > > > > Am 29. Januar 2019 19:47:07 MEZ schrieb Michael Hendry > : >>> On 29 Jan 2019, at 09:19, Knut Petersen >> wrote: >>> >>> Hi everybody >>> >>> Urs Liska provides install

"Well, here's another nice mess I've gotten myself into!" Previously Please test new lilypond installers

2019-01-31 Thread Michael Hendry
> On 29 Jan 2019, at 19:00, Urs Liska wrote: > > If you use alternative notation fonts you have to "install" them for every > new LilyPond installation. [With apologies to Laurel & Hardy]. Having successfully installed 2.21.0, I’ve tried to install Lilyjazz according to the instructions here:

Re: "Well, here's another nice mess I've gotten myself into!" Previously Please test new lilypond installers

2019-02-01 Thread Michael Hendry
> On 31 Jan 2019, at 19:32, Abraham Lee wrote: > > Hi, Michael! > > On Thu, Jan 31, 2019 at 10:28 AM Michael Hendry > wrote: > > On 29 Jan 2019, at 19:00, Urs Liska wrote: > > > > If you use alternative notation fonts you have to "install"

Re: "Well, here's another nice mess I've gotten myself into!" Previously Please test new lilypond installers

2019-02-01 Thread Michael Hendry
> On 1 Feb 2019, at 17:29, Urs Liska wrote: > > > > Am 1. Februar 2019 18:08:16 MEZ schrieb Michael Hendry > : >>> On 31 Jan 2019, at 19:32, Abraham Lee >> wrote: >>> >>> Hi, Michael! >>> >>> On Thu, Jan 31, 2019 at

Re: creating a function to automate slides in guitar music

2019-02-04 Thread Michael Hendry
> On 4 Feb 2019, at 04:54, John Doe wrote: > > Hi, LilyPond users, > > First post, here. I'm trying to create a function that adds falling > gliss lines to a note or chord, as commonly seen in modern guitar > transcriptions. (N.B. I'm talking notation, not tablature.) I posted a > a question on

Re: LilyPond 64-bit version for a Mac

2019-03-02 Thread Michael Hendry
> On 2 Mar 2019, at 17:36, Robert Blackstone > wrote: > > Hi all, > > Up till now I have done all of my LilyPond work on a MacBook Pro with MacOSX > 10.9.5, alias Mavericks. > > Recently DropBox warned me that on april 9 it will end the support of the > Dropbox Desktop App for this OS. In

Re: Template management for LilyPond

2019-04-25 Thread Michael Hendry
> On 24 Apr 2019, at 22:32, markjulie.com wrote: > > I am a new user to LilyPond 2.18.2 and Frescobaldi 2.20.0 having previously > used Finale on MacOS. I would like to save some of the templates from the > LilyPond documentation. I would like them to be available in the cloud > (Google, Dropb

Re: Template management for LilyPond

2019-04-25 Thread Michael Hendry
> On 25 Apr 2019, at 13:00, Sven Axelsson wrote: > > ~/Library/Preferences/com.frescobaldi.frescobaldi.plist This file doesn’t exist on my iMac, although I’ve been using Frescobaldi for (? >5) years. I’d been in the habit of using my own template files directly from the working directory they

Re: Template management for LilyPond

2019-04-26 Thread Michael Hendry
> On 26 Apr 2019, at 00:49, Andrew Bernard wrote: > > Hi Michael, > > But the OP was not requiring a multiuser development environment, but a > multi-device one. Indeed - but no harm in looking at other possibilities if planning a request for changes in Frescobaldi. > For multiple users on o

Re: LP-set songbook released

2019-04-29 Thread Michael Hendry
> On 29 Apr 2019, at 07:37, Anders Eriksson wrote: > > > > On 2019-04-28 22:34, Christopher R. Maden wrote: >> On 4/27/19 4:59 AM, J Martin Rushton wrote: >>> A very creditable production. Don't worry about the letter/A4 issue, >>> it printed out perfectly on my A4 system. There is one proble

Re: LP-set songbook released

2019-04-29 Thread Michael Hendry
> On 29 Apr 2019, at 08:08, Michael Hendry wrote: > >> On 29 Apr 2019, at 07:37, Anders Eriksson wrote: >> >> >> >> On 2019-04-28 22:34, Christopher R. Maden wrote: >>> On 4/27/19 4:59 AM, J Martin Rushton wrote: >>>> A very cred

Re: [Lilypond] How to add 12 bars of guitar strumming as Intro

2019-05-26 Thread Michael Hendry
> On 26 May 2019, at 22:35, John Helly wrote: > > Aloha. > > I'm writing a song for guitar and vocal that has the structure below. I would > like to add 12 bars of strumming guitar as an Intro but cannot figure out how > to add it within the Staff since it doesn't have a melody, only strumming

Re: Pedal tweak

2019-06-03 Thread Michael Hendry
> On 3 Jun 2019, at 13:14, Pierre Perol-Schneider > wrote: > > Hi, > What's wrong with this tweak ? > > \version "2.19.83" > { > a1\sustainOn a-\tweak color #red \sustainOff \sustainOn > } > > TIA > Cheers, > Pierre > ___ > lilypond-user mailing l

Re: ERROR: In procedure ly:trampoline: ERROR: Wrong type argument in position 3 (expecting Translator): #

2019-06-03 Thread Michael Hendry
> On 4 Jun 2019, at 01:58, Ben wrote: > > On 6/3/2019 8:02 PM, Joseph Srednicki wrote: >> Hello: >> >> I read some messages about this issue in the mail archive, but I have not >> been able to get Lilypond to compile the attached file. >> >> I know that the attached example is not tiny, but I

Leadsheet - trying to fill page without leaving empty space

2019-06-10 Thread Michael Hendry
Oh Wise Ones, I use Lilypond to produce jazz leadsheets for concert, Bb and Eb instruments, and find I often have to tweak parts to get them to fit on to a single A4 page. Alto sax parts tend to need a bit more compression because they tend to have more ledger lines at the top of the staff. I

Re: Leadsheet - trying to fill page without leaving empty space

2019-06-10 Thread Michael Hendry
> On 10 Jun 2019, at 17:37, Simon Albrecht wrote: > > On 10.06.19 18:12, Michael Hendry wrote: >> Is there a more elegant way of ensuring that a leadsheet fits in one page? > > > Of course there is – try using the paper variables page-count, system-count > and fo

Re: Leadsheet - trying to fill page without leaving empty space

2019-06-10 Thread Michael Hendry
> On 10 Jun 2019, at 17:50, Aaron Hill wrote: > > On 2019-06-10 9:12 am, Michael Hendry wrote: >> I can usually get a reasonable result by tweaking global-staff-size, >> but here’s an example of the bottom of a page with >> [ . . . ] >> Am I tweaking the wr

Re: Lilypond 2.19.83

2019-07-02 Thread Michael Hendry
> On 2 Jul 2019, at 02:47, Stanton Sanderson wrote: > > > On Jul 1, 2019, at 11:03 AM, John McWilliam wrote: >> >> <25th_kosbs_test.ly> > > John, > > I’m probably missing something, but it appears to work on my machine (Mac OS > 10.14.5). pdf attached > > <25th_kosbs_test.pdf>_

Re: Jazz chords layout question

2019-07-14 Thread Michael Hendry
> On 14 Jul 2019, at 00:30, Jacques Menu wrote: > > Hello Robin, > > Thanks, the result is already better, with the seconda volta at the right > place after adjusting the parameter of \pseudoIndent. > > Didn’t find a way to hide the empty part of the staff to the left of it, > stopStaff/start

Installing Frescobaldi 3.1.3 on Mac with MacOS 12.1

2022-08-29 Thread Michael Hendry
” cannot be opened because the developer cannot be verified” as being free from malware. Can anyone advise me: a) how to resubscribe to the list. b) how to get round the verification problem. Regards, Michael Hendry

Re: Installing Frescobaldi 3.1.3 on Mac with MacOS 12.1

2022-08-29 Thread Michael Hendry
Thanks, that enabled me to get round the warning > On 29 Aug 2022, at 18:50, Omer Katzir wrote: > > Right click on the app and Open. That should fix it, there are no issues > running 3.1.3 with MacOS. > 3.2 is another story. > > >> On 29 Aug 2022, at 2

Configuration problems following new installation of Frescobaldi

2022-08-29 Thread Michael Hendry
uration option which will deal with this error. Can anyone advise? Thanks in advance, Michael Hendry

Re: Configuration problems following new installation of Frescobaldi

2022-08-30 Thread Michael Hendry
On 30 Aug 2022, at 08:27, Jean Abou Samra wrote: > > Le 30/08/2022 à 08:56, Michael Hendry a écrit : >> >> I stopped using Frescobaldi and Lilypond at the beginning of the Covid >> pandemic and since then I have bought a new iMac with Monterey and >> transferr

Re: Installing Frescobaldi 3.1.3 on Mac with MacOS 12.1

2022-09-02 Thread Michael Hendry
Thanks to Omer and Jean for getting me back on the Frescobaldi road again. I’m now able to open, edit and compile lilypond source documents again, but I’m getting a lot of warnings about deprecated code which I’d like to get rid of. When I attempt to use ‘convert.ly’ (via Frescobaldi’s Tools men

Re: Installing Frescobaldi 3.1.3 on Mac with MacOS 12.1

2022-09-02 Thread Michael Hendry
On 2 Sep 2022, at 17:29, Knute Snortum wrote: > > On Fri, Sep 2, 2022 at 12:30 AM Michael Hendry > wrote: >> >> Thanks to Omer and Jean for getting me back on the Frescobaldi road again. >> >> I’m now able to open, edit and compile lilypond source documents

Re: Extended bar checking?

2022-09-19 Thread Michael Hendry
On 19 Sep 2022, at 15:11, Jean Abou Samra wrote: > > > > Le 19/09/2022 à 11:50, Michael Hendry a écrit : >> On 18 Sep 2022, at 22:32, Jean Abou Samra wrote: >> >>> >> >> >>> \relative c' { >>> c4 d e2 | >>>

Re: LilyPond-2.22.2 does not work on Windows XP

2022-10-13 Thread Michael Hendry
On 13 Oct 2022, at 15:35, Karlin High wrote: > > On 10/12/2022 6:51 PM, Dag Bergman wrote: >> I get the error message: “The system cannot execute the specified program.” > > This seems like a pretty broad error. I see mentions of needing Right-Click > -> Properties -> Unblock, to allow a downl

Re: bar check problems with a repeat volta whose first ending is an incomplete bar

2023-01-12 Thread Michael Hendry
On 12 Jan 2023, at 07:17, Pierre Perol-Schneider wrote: > > Hi Kenneth > > Le jeu. 12 janv. 2023 à 07:30, Kenneth Wolcott > a écrit : > ... >> It is bar #8 that is the incomplete bar in the first repeat volta, > ... > > Two possibilities: > a) ignore the warn

  1   2   >