Re: changePitch and ties

2015-12-27 Thread Gilles THIBAULT
> Would it be possible to tell changePitch to automatically repeat the pitch > of a tied note? Well, i have just read your message just yesterday. Sorry. Here is a function that automatically repeats the pitch of a tied note. I'll try to include it in a next release of changePitch.ly --

Strings as variable names

2015-12-27 Thread Menu Jacques
Hello folks, I’ve found that one can write the following: \version "2.19.33" "bella melodia" = \relative c' { r4- ef\upbow(f) r g | } \score { \"bella melodia" } but I couldn’t find such a possibility in the 2.19.31 Notation Reference, even though that may be useful. Does anyone know

Re: Notation snippets

2015-12-27 Thread Malte Meyn
Am 27.12.2015 um 16:18 schrieb Jayaratna: > I hope these will be understandable: > > workex.ly > > > > It should be like this, but I can't extend the lines over

Re: Notation snippets

2015-12-27 Thread Pierre Perol-Schneider
Hi Andrea, How about: \version "2.19.34" my-staff = \markup\stencil #(make-path-stencil '(M 0 2 L 5 2 M 0 1 L 5 1 M 0 0 L 5 0 M 0 -1 L 5 -1 M 0 -2 L 5 -2) 0.1 1 1 #f) \markup { %% clef G \combine \my-staff \translate #'(1

Re: problem with accent placement

2015-12-27 Thread Klaus Blum
Hi Alex, to affect the markup, use TextScript instead of Script: % - \version "2.18.0" \relative c''' { a2-> \trill \once \override TextScript.script-priority = #-100 a2-> ^\trill^\markup { \sharp } } % -

Re: ANN: Frescobaldi 2.18.2

2015-12-27 Thread Jacques Menu
Hello Wilbert, Thanks a lot for this new release, and a happy new year too! JM > Le 27 déc. 2015 à 16:14, Wilbert Berendsen a écrit : > > Dear friends, > > I yeserday released Frescobaldi 2.18.2, a maintenance release > containing bug fixes, small improvements and translation

problem with accent placement

2015-12-27 Thread Alex Jones
I’m using the Script.priority-order to place an accidental above a trill ornament, but when combining with a note accent it creates an ordering property as per the documentation example. However with the following snippet: \version "2.18.0" \relative c''' { a2-> \trill \once \override

Re: Notation snippets

2015-12-27 Thread Pierre Perol-Schneider
Andy, this should work: \markup \override #'(style . mensural) \note-by-number #5 #0 #UP Cheers, Pierre 2015-12-27 18:22 GMT+01:00 Jayaratna : > Thank you, Pierre and Schneidy, > > it works. What about mensural notes as well? > Mensural flags are not suupported by

Re: problem with accent placement

2015-12-27 Thread Thomas Morley
2015-12-27 18:18 GMT+01:00 Alex Jones : > I’m using the Script.priority-order to place an accidental above a trill > ornament, but when combining with a note accent it creates an ordering > property as per the documentation example. However with the following >

Re: Notation snippets

2015-12-27 Thread Pierre Perol-Schneider
Or maybe a closer look: . %% the note \combine \my-staff \translate #'(2 . 4) \combine \note-by-number #5 #0 #DOWN \translate #'(0 . 0) \stencil #(make-path-stencil '(M -0.3 0 L 1.6 0 M -0.3 -1 L 1.6 -1) 0.15 1 1 #f)

Re: \transpose not work working inside define-music-function

2015-12-27 Thread Wols Lists
On 27/12/15 16:32, J Smith wrote: > I'm trying to define a music function that transposes a chord and a > melody multiple times. But for some reason, the transposition is done > only once. > > Here's my attempt: > > repeatpattern = > #(define-music-function (parser location chord pattern)

Re: Notation snippets

2015-12-27 Thread Simon Albrecht
On 27.12.2015 16:32, Jayaratna wrote: Hope I can keep both versions on my system. Of course you can – I’ve about a dozen versions installed here. Just install them in another directory, e.g. using the --prefix option with the sh installer (don’t know what way you’re installing it). HTH,

Notation snippets

2015-12-27 Thread Jayaratna
Dear Lilipondians, I am trying to make a page which shows a series of music symbols, each of them appearing on a standard staff of a given measure. So far I can print clefs and other symbols, but with no staff lines. Any idea on how to make this? Thank you, A \version "2.18.2" \paper {

Re: Notation snippets

2015-12-27 Thread Michael Gerdau
> I am trying to make a page which shows a series of music symbols, each of > them appearing on a standard staff of a given measure. So far I can print > clefs and other symbols, but with no staff lines. > > Any idea on how to make this? > > Thank you, > A > > \version "2.18.2" > > \paper { >

Re: Notation snippets

2015-12-27 Thread Malte Meyn
Am 27.12.2015 um 14:34 schrieb Jayaratna: > Dear Lilipondians, > > I am trying to make a page which shows a series of music symbols, each of > them appearing on a standard staff of a given measure. So far I can print > clefs and other symbols, but with no staff lines. > > Any idea on how to

Re: Notation snippets

2015-12-27 Thread Jayaratna
I'm downloading the newest version. Hope I can keep both versions on my system. In any case, is it possible to center the last notes with the staff lines? Thank you, A -- View this message in context: http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185128.html Sent from the

\transpose not work working inside define-music-function

2015-12-27 Thread J Smith
I'm trying to define a music function that transposes a chord and a melody multiple times. But for some reason, the transposition is done only once. Here's my attempt: repeatpattern = #(define-music-function (parser location chord pattern) (ly:music? ly:music?) #{ % << \new

Re: ANN: Frescobaldi 2.18.2

2015-12-27 Thread Ralph Palmer
On Sun, Dec 27, 2015 at 10:14 AM, Wilbert Berendsen wrote: > Dear friends, > > I yeserday released Frescobaldi 2.18.2, a maintenance release > containing bug fixes, small improvements and translation updates. Thanks, once again, for Frescobaldi, Wilbert Berendsen. What a

Re: \transpose not work working inside define-music-function

2015-12-27 Thread Thomas Morley
2015-12-27 17:32 GMT+01:00 J Smith : > I'm trying to define a music function that transposes a chord and a > melody multiple times. But for some reason, the transposition is done > only once. > > Here's my attempt: > > repeatpattern = > #(define-music-function (parser

Re: problem with accent placement

2015-12-27 Thread Thomas Morley
2015-12-27 19:12 GMT+01:00 Thomas Morley : > 2015-12-27 18:18 GMT+01:00 Alex Jones : >> I’m using the Script.priority-order to place an accidental above a trill >> ornament, but when combining with a note accent it creates an ordering >>

Re: Notation snippets

2015-12-27 Thread Jayaratna
Hello, Harm, all notehad styles are supported, but petrucci, semipetrucci and blackpetrucci styles do not give the proper flag: maybe I should post this on the bugs list. \version "2.19.34" my-staff = \markup\stencil

Re: problem with accent placement

2015-12-27 Thread Alex Jones
This was successful, thank you! I did not try the more involved solution. -akj > On Dec 27, 2015, at 1:12 PM, Thomas Morley wrote: > > 2015-12-27 18:18 GMT+01:00 Alex Jones : >> I’m using the Script.priority-order to place an accidental

Re: Notation snippets

2015-12-27 Thread Jayaratna
Hello Simon, thanks for the advice, I've got both version running on Frescobaldinow. :D Ciao, Andy -- View this message in context: http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185148.html Sent from the User mailing list archive at Nabble.com.

Re: Notation snippets

2015-12-27 Thread Jayaratna
I hope these will be understandable: workex.ly It should be like this, but I can't extend the lines over the clefs. I also need the music symbols to be centered with

Re: Notation snippets

2015-12-27 Thread Jayaratna
Thank you, Pierre and Schneidy, it works. What about mensural notes as well? Mensural flags are not suupported by \note-by-number... :( %% note \combine \my-staff \translate #'(2 . 0) \combine \override #'(style . petrucci) \override #'(flag-style . mensural-flag )

Re: Notation snippets

2015-12-27 Thread Jayaratna
It does not support the proper flag with bigger noteheads :_( Thank you anyway. A %% note \combine \my-staff \translate #'(0 . 0) \combine \override #'(style . mensural) %\override #'(flag-style . mensural-flag ) \note-by-number #5 #0 #UP \translate #'(1 . 0) \combine

Re: Notation snippets

2015-12-27 Thread Thomas Morley
2015-12-27 18:22 GMT+01:00 Jayaratna : > Thank you, Pierre and Schneidy, > > it works. What about mensural notes as well? > Mensural flags are not suupported by \note-by-number... :( They are not _separatly_ supported, I thought that would make little sense ;) \markup {

ANN: Frescobaldi 2.18.2

2015-12-27 Thread Wilbert Berendsen
Dear friends, I yeserday released Frescobaldi 2.18.2, a maintenance release containing bug fixes, small improvements and translation updates. Homepage: www.frescobaldi.org Download: www.frescobaldi.org/download It is needed to upgrade python-ly to version 0.9.3, which contains additional bug

Re: lilypond-devel on MacPorts

2015-12-27 Thread Jacques Menu
Hello Samuel, MacPorts as I understand it is meant to work on its own. Since it keeps records of what has been installed, their dependencies and where they have been installed, I don’t think you can tamper with that easily. JM > Le 26 déc. 2015 à 20:57, Br. Samuel Springuel

Re: Notation snippets

2015-12-27 Thread Thomas Morley
2015-12-27 19:19 GMT+01:00 Jayaratna : > Hello, Harm, > > all notehad styles are supported, but petrucci, semipetrucci and > blackpetrucci styles do not give the proper flag: maybe I should post this > on the bugs list. > >

Re: ANN: Frescobaldi 2.18.2

2015-12-27 Thread zzk
Wilbert Berendsen-2 wrote > I yeserday released Frescobaldi 2.18.2, a maintenance release > containing bug fixes, small improvements and translation updates. Thank you so much for your work on Frescobaldi, Wilfred. Wishing you all the best in 2016. ZK -- View this message in context:

Re: Lilypond console output stdout/stderr

2015-12-27 Thread Andrew Bernard
Good question. A continual annoyance. You can’t pipe through less and so on, without redirecting shell file descriptors. Andrew On 28/12/2015, 15:57, "Nick Payne" wrote: Why does what should be

Re: Notation snippets

2015-12-27 Thread Jayaratna
Thank you so much, Harm. Maybe I could/should draw the glyphs for petrucci style flags. They should not be too much work if I can start from a draft. Andy -- View this message in context: http://lilypond.1069038.n5.nabble.com/Notation-snippets-tp185122p185153.html Sent from the User mailing

Re: Notation snippets

2015-12-27 Thread Thomas Morley
2015-12-27 21:10 GMT+01:00 Thomas Morley : > 2015-12-27 19:19 GMT+01:00 Jayaratna : >> Hello, Harm, >> >> all notehad styles are supported, but petrucci, semipetrucci and >> blackpetrucci styles do not give the proper flag: maybe I should post this >>

Re: adding a markup ("sim.") to the end of a SustainPedalBracket

2015-12-27 Thread Simon Albrecht
Hello Kieren, the bug is a consequence of issue 2504 . To fix it, just change line 89 of your attached file into (stencil-whiteout new-sim-stil 'outline thickness 1) Yours, Simon On 27.12.2015 23:32, Kieren MacMillan wrote: Argh! Here’s

Re: Strings as variable names

2015-12-27 Thread Andrew Bernard
Hi Jacques, Well, the NR states: The name of a variable must have alphabetic characters only, no numbers, underscores, or dashes. That excludes spaces explicitly. The fact that you can use a quoted string is undocumented and may therefore become unsupported at any time. In Scheme, you cannot

Re: adding a markup ("sim.") to the end of a SustainPedalBracket

2015-12-27 Thread Thomas Morley
2015-12-27 23:32 GMT+01:00 Kieren MacMillan : > Argh! Here’s the attachment. > > Sorry for the noise, > Kieren. > > > > > On Dec 27, 2015, at 5:31 PM, Kieren MacMillan > wrote: > >> Hello Harm (et al.), >> >> Attached is the pedal

Re: lilypond-devel on MacPorts

2015-12-27 Thread Carl Sorensen
On 12/27/15 12:32 PM, "Jacques Menu" wrote: >Hello Samuel, > >MacPorts as I understand it is meant to work on its own. Since it keeps >records of what has been installed, their dependencies and where they >have been installed, I don¹t think you can tamper with that

Lilypond console output stdout/stderr

2015-12-27 Thread Nick Payne
Why does what should be considered "normal" console output go to stderr rather than stdout. For example, if I want to capture the list of fonts to a file, I have to redirect stderr rather than stdout: lilypond -dshow-available-fonts 2> lilyfont.txt Nick

Re: Beamed Tremolo + Fermata

2015-12-27 Thread Kieren MacMillan
Hi Abraham, On Dec 24, 2015, at 5:52 PM, Abraham Lee wrote: > Any other nice ideas to center-align the fermata on the tremolo beams? Override [once] the Beam.stencil to add the [centred] fermata? Hope that helps, Kieren. Kieren

Re: adding a markup ("sim.") to the end of a SustainPedalBracket

2015-12-27 Thread Kieren MacMillan
Argh! Here’s the attachment. Sorry for the noise, Kieren. PianoPedal_sim.ly Description: Binary data On Dec 27, 2015, at 5:31 PM, Kieren MacMillan wrote: > Hello Harm (et al.), > > Attached is the pedal stencil-altering function you wrote for me back in

Re: adding a markup ("sim.") to the end of a SustainPedalBracket

2015-12-27 Thread Kieren MacMillan
Hello Harm (et al.), Attached is the pedal stencil-altering function you wrote for me back in 2013 (v. 2.17.20). (BTW: I use this function all the time. Thanks!) Recently, I’ve been thinking about generalizing it and submitting it as a patch, with a few small improvements (e.g., it would be

Re: adding a markup ("sim.") to the end of a SustainPedalBracket

2015-12-27 Thread David Kastrup
Thomas Morley writes: > (1) > stencil-whiteout-box uses define*-public and optional arguments, I > thought it's broken in guilev2 Only in connection with currying. So (define*-public ((... is (possibly) going to cause trouble while (define*-public (... is ok. >

Rotation.

2015-12-27 Thread Hwaen Ch'uqi
Greetings All, I see from the NR that there are ways of rotating individual objects or text markups. Is there a way of rotating an entire score? Thank you for any help. Hwaen Ch'uqi ___ lilypond-user mailing list lilypond-user@gnu.org

Re: Strings as variable names

2015-12-27 Thread Johan Vromans
On Mon, 28 Dec 2015 12:05:22 +1100 Andrew Bernard wrote: > The name of a variable must have alphabetic characters only, no numbers, > underscores, or dashes. > > Most lilypond users would write bellaMelodia, conventionally. In terms of > readability, it’s clearer to

Re: Lilypond console output stdout/stderr

2015-12-27 Thread Johan Vromans
On Mon, 28 Dec 2015 16:30:37 +1100 Andrew Bernard wrote: > Good question. A continual annoyance. You can’t pipe through less and so > on, without redirecting shell file descriptors. The GNU guidelines state (roughly): write to stdout what is asked for, and to stderr