Re: fondu fails on newer OS X versions

2018-01-12 Thread padovani
Hello, it seems that I'm having the mentioned fondu issue while running LilyPond 2.19.80 on OSX 10.11.6 - El Capitan. [ http://lilypond.1069038.n5.nabble.com/fondu-problems-on-El-Capitan-td189203.html ] Is there a fix around? Digging the LilyPond user, developer and bug lists I didn't found the f

Re: exponential crescendo... / Mike "experimental" spanners?

2013-05-09 Thread padovani
rcled-tip = ##t %%doesn't work \once \override Hairpin #'stencil = #flared-hairpin g4\< ~ g4 ~ g8\f josé 2013/5/9 padovani > Really nice! thanks Janek and mike! > > > 2013/5/9 Janek Warchoł > >> 2013/5/9 padovani : >> > Would there be another way to

Re: exponential crescendo... / Mike "experimental" spanners?

2013-05-09 Thread padovani
%\once \override Hairpin #'bound-details #'left #'padding = #0 %% <- this feature would be nice, just as in Glissandos... g'2\nientedyn\< ~ g8\fff } %%end of code [image: Imagem inline 1] 2013/5/9 Janek Warchoł > 2013/5/9 padovani : > > [have also posted that

Re: binary for Leopard available

2008-05-18 Thread padovani
Hi, could these intel binaries to me? Or maybe place it on some website so I could download it? thanks Arthur Reutenauer escreveu: Hello, Jeroen Bol sent me a working binary for Mac OS X Leopard, which he created by changing the Python part of the GUI. As I mentioned a whi

dal niente/al niente with slashed circle?

2008-05-20 Thread padovani
Does anyone know a trick to slash the circled-tip option of Hairpins? The circle seems to be a flageolet... maybe with some postscript... ?? ___ lilypond-devel mailing list lilypond-devel@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-devel

Re: holdups for 2.12

2008-11-29 Thread padovani
Graham Percival escreveu: - OSX 10.5 issues: I think the command-line version is fine, but we still don't have a working gui. But there's one or two people who have created workaround with actionscript? Having a dual boot Macbook Pro (Leopard / Ubuntu 8.10), I can see that the PPC versio

Re: 2.12 on Leopard

2008-12-28 Thread padovani
I agree and would like to support this too... josé Josh Parmenter escreveu: So why not make the 10.5 package use it? Or is there a way to make it available? It seems like it would make more sense to point users to the 10.5 only wrapper then to continue directing them to build / hack it themsel

Re: 2.12 on Leopard

2008-12-28 Thread padovani
Indeed, it's running here! thank you! Ivo Bouwmans escreveu: Hallo all, Josh Parmenter schreef / wrote / skribis: I just noticed that the 2.12 download for Mac Leopard still has directions for building, etc. I thought the wrapper app problems had been solved? Is this not the case? The link

svg font issue(bug?): can't change TimeSignature font (but markup fonts can be changed)

2015-04-28 Thread padovani
Hi, This code compiles on .ps /.svg backends without problems: %code 1 \score { \new Staff { \time 2/4 c2_\markup { \override #'(font-name . "Helvetica") "here it works" } } } %end code 1 But the code below one gives me an error if I compile with -dbackend=svg %code2 \score { \new Staff {

Re: svg font issue(bug?): can't change TimeSignature font (but markup fonts can be changed)

2015-04-29 Thread padovani
ore { \new Staff { \override Staff.TimeSignature.stencil = #tsigastext \time 2/4 c2 %%% \override Staff.TimeSignature.stencil = #(lambda (grob) %%%(parenthesize-stencil (ly:time-signature::print grob) 0.1 0.4 0.4 0.1 )) \time 3/4 c2 } } %% END CODE 2 thanks! 2015-04-28 14:37 GMT-03:00 padova

Re: svg font issue(bug?): can't change TimeSignature font (but markup fonts can be changed)

2015-04-29 Thread padovani
Nice! Thank you!! 2015-04-29 20:02 GMT-03:00 Dan Eble : > On Apr 29, 2015, at 16:48 , padovani wrote: > > > > So... I discovered that the TimeSignature issue is related to the fact > that > > it is not being written as text to the svg file, but as a path. > > >

Re: OSX 10.7, fonts and fondu?

2012-02-01 Thread padovani
Em 2/1/12 6:34 AM, Marc Hohl escreveu: Am 31.01.2012 21:55, schrieb padovani: hello, I'm having troubles with 2.15.27 and OSX 10.7.2. In a simple piece of code using fonts like Texier's Controla (http://christian.texier.pagespro-orange.fr/mididesi/free/index.htm), the compilati

Re: OSX 10.7, fonts and fondu?

2012-02-01 Thread padovani
Em 2/1/12 8:48 AM, Marc Hohl escreveu: Am 01.02.2012 11:06, schrieb padovani: Em 2/1/12 6:34 AM, Marc Hohl escreveu: Am 31.01.2012 21:55, schrieb padovani: hello, I'm having troubles with 2.15.27 and OSX 10.7.2. In a simple piece of code using fonts like Texier's Contr

Re: OSX 10.7, fonts and fondu?

2012-02-01 Thread padovani
ok, sorry for the buzz everybody... just removed all fonts and reinstalled from Texier win packages (TTF fonts). Now it seems to work without problems. thank you, josé ___ lilypond-devel mailing list lilypond-devel@gnu.org https://lists.gnu.org/mai

use guile to set specific extra-offset values if stem direction is up or down

2012-05-21 Thread padovani
Hello, I'm dealing with special noteheads I've designed and I need to move the stem and the flag differently if stem direction is up or down. I would like to create a guile lisp clause that sets the extra-offset value accordingly to the Stem position. I was trying this, but it does not work

Re: use guile to set specific extra-offset values if stem direction is up or down

2012-05-21 Thread padovani
Em 5/21/12 11:44 AM, David Nalesnik escreveu: \override Stem #'extra-offset = #(lambda (grob) (if (eqv? (ly:stem::calc-direction grob) UP) '(-0.02 . -0.25) '(0.02 . 0.25))) Hello David, thank you very much! Now I see that ly:stem::calc-direction only gives me the standard Stem direct

Re: use guile to set specific extra-offset values if stem direction is up or down

2012-05-21 Thread padovani
Oh, I'm sorry... I was reading everything in a hurry and didn't got the second part of your message. Thank you again! 2012/5/21 David Nalesnik > Hi José, > > On Mon, May 21, 2012 at 10:20 AM, padovani wrote: > >> Em 5/21/12 11:44 AM, David Nalesnik escreveu: >

Re: use guile to set specific extra-offset values if stem direction is up or down

2012-05-21 Thread padovani
. -0.25) '(0.02 . 0.25))) So, is there a way to know the Flag direction? Or maybe a wat to access the Stem's grob from the Flag one (so that I can point the function to the Stem properties?). Thank you again, José Em 5/21/12 1:10 PM, David Nalesnik escreveu: José, On Mon, May 2

Re: use guile to set specific extra-offset values if stem direction is up or down

2012-05-21 Thread padovani
Em 5/21/12 3:03 PM, David Nalesnik escreveu: Sorry to take the Scheme fun out of it... (if this is in fact gives you what you want!) That's it! No need of the Scheme part of the Scheme fun! :) Thank you very much! -- http://zepadovani.info ___ lil

emacs lilypond-mode.el and lilypond-init.el patches to process .lytex files with "lilypond-book --pdf"/"pdflatex"

2010-05-08 Thread josé henrique padovani
Hi, I have made some changes on my emacs lilypond-mode files to process lytex files as suggested here (http://lilypond.org/doc/v2.13/Documentation/usage-big-page#Invoking-lilypond_002dbook)... directly with: "lilypond-book --pdf file.lytex" and "pdflatex file.tex" I'm sending the patches... P

Re: emacs lilypond-mode.el and lilypond-init.el patches to process .lytex files with "lilypond-book --pdf"/"pdflatex"

2010-05-08 Thread josé henrique padovani
Em 08/05/10 13:00, Nicolas Sceaux escreveu: I don't know if this can be changed in the local .emacs file, but I just edit lilypond-mode.el and replace "xpdf" with "open" and it works fine. (custom-set-variables ;; custom-set-variables was added by Custom. ;; If you edit it by han

-dbackend=svg ... warning: missing stencil expression `embedded-ps'

2010-06-04 Thread josé henrique padovani
(OBS: I'm writing to user and devel lists as I am not sure if it is a bug...) Hello, I am trying to generate svg files of my score, where I use some \postscript markups. Everything goes ok, except those markups... I get this warning and the svg file comes without the postcript drawings... "wa

Re: -dbackend=svg ... warning: missing stencil expression `embedded-ps'

2010-06-05 Thread josé henrique padovani
Em 04/06/10 17:01, Patrick McCarty escreveu: 2010/6/4 josé henrique padovani: I am trying to generate svg files of my score, where I use some \postscript markups. Everything goes ok, except those markups... I get this warning and the svg file comes without the postcript drawings... "wa

Store values in a scheme variable to use after

2010-06-05 Thread josé henrique padovani
Hi... I'm trying to store a NoteHead's position (by using scheme functions) to be abble to use this value after (as a string in a markup)... To do that I define a variable (myvar with the string "init") and then I use tweak to set! myvar to its new value... But when I call myvar from a markup,

scheme function to extract a specific grob property from a music event?

2010-06-06 Thread josé henrique padovani
Hi, I have tried to find in the manual and in the sources a scheme function that let me extract a specific grob from a music object... I want to be able to know which is the 'staff-position (or should it be Y-offset?) grob-property of the notehead I am creating and use it to set the Y-offset o

cap in path routine (was: Re: Eyeglasses (was Re: -dbackend=svg ... warning: missing stencil expression `embedded-ps'))

2010-06-06 Thread josé henrique padovani
Just to be sure: Is it possible to set different caps with the path routine? (I didn't found this option) If not, would it be possible to add an optional variable to set it and have it working on both ps and svg backends? thanks josé -- http://zepadovani.info

Re: cap in path routine

2010-06-06 Thread josé henrique padovani
Em 06/06/10 15:33, Patrick McCarty escreveu: Looking into this more, I see two issues: 1) What names should we use for the different linecap options? 2) Where should these values be specified? For 1), we could use the PostScript naming convention, though it is somewhat difficult to remember. T

Re: cap in path routine

2010-06-06 Thread josé henrique padovani
Em 06/06/10 16:40, josé henrique padovani escreveu: well.. I think that would be good to preserve the ps-like words (simply to avoid confusion between svg and ps syntaxes) It would be nice to add both "setlinecap" and "setlinejoin" to the 'path defs... They c

Re: scheme function to extract a specific grob property from a musicevent?

2010-06-06 Thread josé henrique padovani
Em 06/06/10 20:26, Gilles THIBAULT escreveu: see attached file. Oh sorry. I send a not cleaned file. Please, take this one instead. Gilles That's it!! Thank you very much! I still need to understand the code better, but it is exactly what I need... (want to put some curved glissandos made wi

Re: Syntax Colourgin in BBEdit and TextWrangler

2010-06-07 Thread josé henrique padovani
Em 06/06/10 23:41, Han-Wen Nienhuys escreveu: [+lily-devel] The list is probably a better place to ask around. On Sun, Jun 6, 2010 at 3:53 PM, Frans van Dunné wrote: Dear Han Wen, I made a preliminary syntax colouring xml available to use BBedit or TextWrangler available (http://fransvan