Re: concatenate BarNumber and string (\")?

2021-09-25 Thread padovani
Perfect! Thank you guys! Em sáb., 25 de set. de 2021 às 12:21, Aaron Hill escreveu: > On 2021-09-25 7:30 am, padovani wrote: > > Hi, > > > > I'm working with an algorithmic transcription of some sounds. I'm using > > a > > 1/4 TimeSignature with custom barli

concatenate BarNumber and string (\")?

2021-09-25 Thread padovani
Hi, I'm working with an algorithmic transcription of some sounds. I'm using a 1/4 TimeSignature with custom barlines and would like to concatenate a seconds quote (") to the BarNumber... Do you have any tips on how to do that? It seems that I should deal with BarNumber.stencil, but I'm not

Abjad maillist? Re: Release notification: Abjad 3.1

2020-02-12 Thread padovani
Hello, First of all: thank you Trevor and Josiah for developing Abjad! A great tool! I would like to know if there is a specific forum/mailist for Abjad (I'm not being allowed by google groups to access the one in http://groups.google.com/group/abjad-user that is linked in the github README.rst

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

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

2015-04-29 Thread padovani
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 padovani zepadovani.li...@gmail.com: Hi, This code compiles on .ps /.svg backends without problems

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 d...@faithful.be: On Apr 29, 2015, at 16:48 , padovani zepadovani.li...@gmail.com 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

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 {

osx 10.9?

2013-10-25 Thread padovani
Anyone using one of the last development binaries in OSX 10.9? any known issues? thanks! ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

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

2013-05-09 Thread padovani
Really nice! thanks Janek and mike! 2013/5/9 Janek Warchoł janek.lilyp...@gmail.com 2013/5/9 padovani zepadovani.li...@gmail.com: Would there be another way to do that? (which would span to the right note, and accept dal niente circle, for example?) %%code \relative c' { \once

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

2013-05-09 Thread padovani
-tip = ##t %%doesn't work \once \override Hairpin #'stencil = #flared-hairpin g4\ ~ g4 ~ g8\f josé 2013/5/9 padovani zepadovani.li...@gmail.com Really nice! thanks Janek and mike! 2013/5/9 Janek Warchoł janek.lilyp...@gmail.com 2013/5/9 padovani zepadovani.li...@gmail.com: Would

exponential crescendo... / Mike experimental spanners?

2013-05-08 Thread padovani
Would there be another way to do that? (which would span to the right note, and accept dal niente circle, for example?) %%code \relative c' { \once \override Hairpin #'stencil = #ly:text-interface::print \once \override Hairpin #'text = \markup{ \path #0.1 #'((moveto 0 0) (lineto 6 0.25)

[OT?] Roman Numeral Analysis Fonts

2013-05-07 Thread padovani
Hi, I've released two fonts for Roman Numeral Analysis... as the music symbols (sharps, flats, double sharps, doubles flats) are based on Emmentaler, I've thought that would be nice to distribute also among LilyPonders.. There is a PT and an EN version. I use them to prepare music analysis of

Re: re-attacked glissandi

2012-05-30 Thread padovani
I have already sent this to Bernardo, but maybe it could be helpful to somebody else... (just did not wrote the markups and the TextSpanner that are in the original version) josé \version 2.15.38 olosbhead = { \once \override NoteHead #'stem-attachment = #'(1 . -0.05) \once

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

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

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 david.nales...@gmail.com Hi José, On Mon, May 21, 2012 at 10:20 AM, padovani zepadovani.li...@gmail.comwrote: Em 5/21/12 11:44 AM, David Nalesnik

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

2012-05-21 Thread padovani
, 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 21, 2012 at 11:02 AM, padovani zepadovani.li

Re: Tongue Ram

2012-02-16 Thread padovani
I use a arrowhead here to write slap tongues to clarinet... \musicglyph #arrowheads.close.1M1 cheers josé -- http://zepadovani.info ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Experimental Web-based Lilypond Editor

2012-02-03 Thread padovani
really great! It would be nice to be able to edit multiple files in a directory, so that it would be possible to work on more complex examples (that would require \include). congratulations! Em 2/3/12 3:10 AM, trevordixon escreveu: Now allows for compiling with either the latest stable

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 compilation process

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 Controla (http

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-user mailing list lilypond-user@gnu.org

OSX 10.7, fonts and fondu?

2012-01-31 Thread 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 compilation process ends with the following error: Drawing systems... Layout output to `test.ps'...

Re: lilypond / inkscape

2011-10-19 Thread padovani
For me the downside is that svg does not import \postscript markups... and inkscape, as you said, does not import correctly lilypond ps and eps files... (I use \postscript to create some curved glissandos and specific woodwind diagrams - with trills in specific keys, for example). [see

non numbered footnotes?

2011-08-18 Thread padovani
Hello, I'm trying to change a footnote example (overrides and more overrides) to have both the link and the footnote without numbers, but with arbitrary markups... (I would like to use * or ** for example)... Is it possible? (with the code below I get automatic numbers and no asterisk above

footnotes without numbers?

2011-08-17 Thread padovani
Hi, how do I tweak footnotes so that they are not identified by numbers (automatic created) but by custom markups? (like * or **)... thanks josé -- http://zepadovani.info ___ lilypond-user mailing list lilypond-user@gnu.org

Re: footnotes?

2011-05-10 Thread padovani
Em 06/05/11 17:02, m...@apollinemike.com escreveu: On May 6, 2011, at 12:20 PM, padovani wrote: Are the footnotes working on the last development version? Are there examples on how to use them? Yup. If you check out the page http://lilypond.org/doc/v2.13/input/regression/collated

footnotes?

2011-05-06 Thread padovani
Are the footnotes working on the last development version? Are there examples on how to use them? -- http://zepadovani.info ___ lilypond-user mailing list lilypond-user@gnu.org https://lists.gnu.org/mailman/listinfo/lilypond-user

Re: Graphical notation in lilypond - results call for help

2010-07-29 Thread josé henrique padovani
Em 29/07/10 11:28, Mike Solomon escreveu: Hey all, Some of you may remember a waveform patch that I put out there a little while ago. I've since expanded it for a particular project to make it work with (almost) any vector graphic. I've posted an extract online. Lilypond takes the

Re: fyi - https://wiki.ubuntu.com/UbuntuFreeCultureShowcase

2010-06-24 Thread josé henrique padovani
Em 24/06/10 14:10, josé henrique padovani escreveu: I'm also finishing a work (Impedance) that will be premiered next month... excerpt attached.. Forgot to say... the specific page I have attached is not yet finished (no dynamics signs in some parts, etc.)... -- http://zepadovani.info

Re: Percussion stick signs

2010-06-14 Thread jos?? henrique padovani
Em 14/06/10 22:56, ?? - Hu Haipeng escreveu: Hello, Today I get a score from my composition teacher. The piece is for orchestra with various instruments. In the perc part, he uses some stick signs such as hard xylophone stick, soft timpani stick. To insert those symbols I use the

inkscape 0.47, OSX... import pdf pages

2010-06-12 Thread josé henrique padovani
Hi, I need to import pdf pages generated by lilypond in Inkscape(0.47)... (OSX) I tried to put (or symbolic link) the OTF fonts (emmentaler*.otf and CenturySchL*.otf) in \Library\Fonts\ ~\Library\Fonts\ ~\.fonts\ then have rebuild the font cache... but Inkscape does not find them for my pdf

Re: Woodwind diagrams in lilypond w/ changes from M Watts I Hulin

2010-06-10 Thread josé henrique padovani
ok guys, I will setup git here... thanks Em 10/06/10 07:19, Carl Sorensen escreveu: On 6/10/10 2:09 AM, Mike Solomonmike...@ufl.edu wrote: Hey José. I would also not suggest copy-and-pasting my new scheme and postscript files into your working directory ­ it is generally bad

Re: Woodwind diagrams in lilypond w/ changes from M Watts I Hulin

2010-06-10 Thread josé henrique padovani
Em 10/06/10 10:04, Bernardo Barros escreveu: Hey, If I install from MacPorts it will have this dev version or an older one?? like: sudo port install lilypond ??? Here it says it is: 2.12.3... port info lilypond lilypond @2.12.3, Revision 2 (textproc) Variants: [+]docs,

Re: Woodwind diagrams in lilypond w/ changes from M Watts I Hulin

2010-06-09 Thread josé henrique padovani
Hi Mike, I would suggest to add the possibility of marked keys (to make sing trills or smorzati, for example)... by now I am drawing my diagrams with postscript, but there is what I am talking about (attached)... I would also like to know: is the code of your woodwind diagrams available

Re: Woodwind diagrams in lilypond w/ changes from M Watts I Hulin

2010-06-09 Thread josé henrique padovani
forgot to ask: are the diagrams working with the svg backend? thanks josé Em 09/06/10 20:12, josé henrique padovani escreveu: Hi Mike, I would suggest to add the possibility of marked keys (to make sing trills or smorzati, for example)... by now I am drawing my diagrams with postscript

Re: Woodwind diagrams in lilypond w/ changes from M Watts I Hulin

2010-06-09 Thread josé henrique padovani
Em 09/06/10 21:23, Carl Sorensen escreveu: On 6/9/10 5:12 PM, josé henrique padovanizepadov...@gmail.com wrote: I would also like to know: is the code of your woodwind diagrams available somewhere? The code is available as a patch at http://codereview.appspot.com/1425041/show

Re: Woodwind diagrams in lilypond w/ changes from M Watts I Hulin

2010-06-09 Thread josé henrique padovani
Em 09/06/10 22:04, Graham Percival escreveu: On Wed, Jun 09, 2010 at 09:41:34PM -0300, josé henrique padovani wrote: Em 09/06/10 21:23, Carl Sorensen escreveu: Unfortunately, it doesn't include the complete files, so it would be fairly difficult for a user who is not familiar

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

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

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,

-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...

Re: define new glyph-name ?

2010-06-02 Thread josé henrique padovani
Never mind... just found a way to solve my problem. Thanks Em 02/06/10 16:16, Carl Sorensen escreveu: On 6/1/10 7:36 PM, josé henrique padovanizepadov...@gmail.com wrote: Hello, is there a way to create a new glyph name... I have read this topic

function to place markup in the same staff-position of the notehead?

2010-06-02 Thread josé henrique padovani
Hi, I want to write a function to place markups (like \postscript blocks) just after (but in the same Y-offset) my noteheads... I know I have to use something like that to allow the TextScript to be inside the Staff, etc... \once \override TextScript #'outside-staff-priority = ##f \once

define new glyph-name ?

2010-06-01 Thread josé henrique padovani
Hello, is there a way to create a new glyph name... I have read this topic (http://old.nabble.com/Defining-extra-glyph-name-td15430582.html#a15430582), but found no answer about this issue.. Thanks josé -- http://zepadovani.info ___

Re: changes in lilypond-mode.el to process lytex?

2010-05-08 Thread josé henrique padovani
Em 07/05/10 18:16, Xavier Scheuer escreveu:Hi, But I suppose sending a PATCH on lilypond-de...@gnu.org would be just fine to help to add these commands to the sources. + Cc: to Chris, Heikki and David ; appreciated. Cheers, Xavier -- Xavier Scheuerx.sche...@gmail.com Just did it..

Re: Website easier editing

2010-05-07 Thread josé henrique padovani
Anyway, if Fomus will be mentioned it is important to state there it *IS* being actively developed... josé Em 07/05/10 11:13, Graham Percival escreveu: Hi all, Colin Campbell has been working with me on the Introduction of the new website. However, we're still debating what to do with the

changes in lilypond-mode.el to process lytex?

2010-05-07 Thread josé henrique padovani
Hi.. I have made some changes on my lilypond-mode.el (for emacs) to process .lytex files with the commands... lilypond-book --pdf yourfile.lytex pdflatex yourfile.tex I would like to know who maintains lilypond-mode and how can I help to add these commands to the sources? (I was having

lilypond fonts on ps and pdf files...

2009-04-04 Thread padovani
Hi, I am having some problems when trying to import pdf or ps files generated from Lilypond into Illustrator... some fonts are not found... Also when I send some pdfs to be printed in Windows machines with Acrobat, the dynamics fonts are not found... It seems to be related to how Adobe apps

TupletNumber with tuplet-number::calc-fraction-text and \note

2008-05-29 Thread padovani
Hi... I would like to append to \once \override TupletNumber #'text = #tuplet-number::calc-fraction-text a \note markup to show which rhythm figure am I dealing with... How to do it? Thanks for any help ___ lilypond-user mailing list

header, layout and paper blocks as variables...

2008-05-22 Thread padovani
hi. is there a way to put the header, layout and block values as variables? I woul like to use something like myheader = \header { . } mylayout = \layout { } mypaper = \paper { } and then call these variables to construct my score... I tried but I get errors like:

change measure's width

2008-05-15 Thread padovani
Hi everyone, Is it possible to change the width (and, proportionally, the space between the notes) of two equal measures? A text based example: c4 c4 c4 c4 | c4 c4 c4 c4 | c4 c4 c4 c4 | thanks. ___

Re: PD to lillypond

2008-04-23 Thread padovani
How do you plan to deal with durations? It would be nice to have have the choice to write the score with proportional notation (duration would be exactly translated in space between quarter-notes) or quantification of time (with a message that tells your external which possible subdivisions of

align postscript markup to the right of a notehead

2008-04-20 Thread padovani
Is there a way to align a postscript markup to the right of a notehead? It could be a scheme function or something like that. It would make the begin of a line (n n moveto) closer to the notehead. thanks for any help. ___ lilypond-user mailing list

duration as a thick line

2008-04-18 Thread padovani
Hi, I'm re-writing a score that I wrote on Finale, and don't know how to make thick lines to show the sustaining duration of a note... I send a small image file to show what am I meaning. Thanks for any help, sugestion. José H. inline: line.png___

beam everything together inside a 4/5 sixteenth tuplet

2008-04-14 Thread padovani
when I run this.. \relative c' { \times 4/5 {c16[ d e8.]}} I don't get the two first sixtenths beamed together... How do I beam everything inside that tuplet together? ___ lilypond-user mailing list lilypond-user@gnu.org

solved - Re: beam everything together inside a 4/5 sixteenth tuplet

2008-04-14 Thread padovani
\relative c' { \times 4/5 {c16[ \set stemLeftBeamCount = #2 \set stemRightBeamCount = #1 d e8.]}} padovani escreveu: when I run this.. \relative c' { \times 4/5 {c16[ d e8.]}} I don't get the two first sixtenths beamed together... How do I beam everything inside that tuplet together

time-signature with notes like (3/quarter symbol)

2008-01-26 Thread padovani
Hi, I'm trying to write time signatures with note symbols instead of whole fractions... I'm trying to do that with markups but it doesn't like it... that is the code I tried: tsMarkup =\markup {\note #4. #1.0} { \override Staff.TimeSignature #'stencil = #ly:text-interface::print \override