Re: add-grace-properties in TabVoice context

2009-07-09 Thread Marc Hohl
Neil Puttock schrieb: 2009/7/9 Marc Hohl : I have changed your improved parentheses handler to get the font-size for the parentheses from the TabNoteHead, so parentheses around grace notes are scaled properly in tablature. Looks good. Thank you! Let's just hope tablature users do

Re: difficulty implementing grob-suicide! for spanned bendAfter

2009-07-09 Thread Mike Solomon
Mark, Thank you - I don't have LilyPondTool, but I will get it. You and I had gone back and forth recently about scheme formatting for LSR submissions - I didn't realize that was a general rule-of-thumb. Sorry for the inconvenience, and thank you for the clean-up (the file compiled on my mach

Re: difficulty implementing grob-suicide! for spanned bendAfter

2009-07-09 Thread James E. Bailey
On 10.07.2009, at 06:47, Mark Polesky wrote: 5) The \layout block goes *inside* the \score block. Not necessarily, one is global for every \score in a \book, and one only applies to a single \score in a \book. James E. Bailey ___ lilypond-use

new website draft 5: help wanted, I mean it

2009-07-09 Thread Graham Percival
http://percival-music.ca/blogfiles/out/lilypond-general_1.html There's now an Examples section, thanks to Jonathan Kulp. - currently, most examples have a "click-to-expand" thing. Some of them don't work expanded, others don't work non-expanded. But there's enough working stuff for you to get

Re: difficulty implementing grob-suicide! for spanned bendAfter

2009-07-09 Thread Mark Polesky
Mike Solomon wrote: > Hey lilypond-users, > I am working on a piece with lots of beams/events across > staves, many of which have bendAfter attached to them. The > spanned bend after clashes with some other stuff in the work, so > I wanted to kill it w/ a callback function, but after having >

difficulty implementing grob-suicide! for spanned bendAfter

2009-07-09 Thread Mike Solomon
Hey lilypond-users, I am working on a piece with lots of beams/events across staves, many of which have bendAfter attached to them. The spanned bend after clashes with some other stuff in the work, so I wanted to kill it w/ a callback function, but after having written the bit of code below I

Re: string-lines

2009-07-09 Thread Mario Moles
In data venerdì 10 luglio 2009 00:08:19, Nick Payne ha scritto: : > Here are the functions I use for a string number indication with a text > spanner. One for up, one for down. I suppose it could be simplified to one > function by passing in an extra parameter to indicate UP or DOWN. > > % usage e.

Re: string-lines

2009-07-09 Thread Mario Moles
È possibile avere il file ly dell'esempio che riporti? Il file png è interessante! Grazie -- oiram/bin/selom ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

RE: string-lines

2009-07-09 Thread Nick Payne
Here are the functions I use for a string number indication with a text spanner. One for up, one for down. I suppose it could be simplified to one function by passing in an extra parameter to indicate UP or DOWN. % usage e.g.: % \stringUp "2" #0 #'(0 . -0.5) #5 #1 % g\startTextSpan c bf'-

Re: string-lines

2009-07-09 Thread Jonathan Kulp
Mario Moles wrote: Ok Jon ora è bellissimo! Mi manca solo una cosa: vorrei allungare un pochino la linea e terminarla così: _| come nelle ottave, come nell'esempio: I was afraid you'd ask for that. :) I wanted it too, so I'll have a look around tonight and see if I can figure it out. Jon -

RE: string-lines

2009-07-09 Thread Nick Payne
To get a circled number to look the same as the builtin string numbers, use \markup \bold { \teeny \concat { \circle { \finger 6 } } } Nick > -Original Message- > From: lilypond-user-bounces+nick.payne=internode.on@gnu.org > [mailto:lilypond-user-bounces+nick.payne=internode.on@g

Re: string-lines

2009-07-09 Thread Mario Moles
Ok Jon ora è bellissimo! Mi manca solo una cosa: vorrei allungare un pochino la linea e terminarla così: _| come nelle ottave, come nell'esempio: -- oiram/bin/selom <>___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/lis

Re: Overriding NoteHead stencil in a chord produces unwanted X offset

2009-07-09 Thread Patrick McCarty
On Thu, Jul 9, 2009 at 2:08 PM, Neil Puttock wrote: >> >> Also, why does (drop-right ...) work without having to add >> #(use-modules (srfi srfi-1))? > > I haven't the foggiest idea.  Perhaps it's being picked up from one of > the loaded .scm files. It's loaded in scm/lily.scm, along with a few ot

Re: Overriding NoteHead stencil in a chord produces unwanted X offset

2009-07-09 Thread Neil Puttock
> this is what I ended up doing; what do you think? As you probably > know, I'm a stickler for semantics, and strictly speaking, these > notes are not harmonics. It's more complicated, but definitely a worthwhile improvement on my quick hack (which naturally doesn't work with minims). I hope you'

Re: string-lines

2009-07-09 Thread Jonathan Kulp
Mark Polesky wrote: You don't need any fancy scheme, just a music-function: http://lilypond.org/doc/v2.13/Documentation/user/lilypond/Simple-substitution-functions Oh, sweet! That was about the easiest thing ever! Thanks for the tip, Mark & Neil. :) This is much more elegant and useful.

Re: string-lines

2009-07-09 Thread Mark Polesky
Jonathan Kulp wrote: > A TODO is to turn it into a scheme function whereby you could > just type something like \stringNumberSpanner "5" to set all of > these parameters: > > \override TextSpanner #'style = #'solid > \override TextSpanner #'font-size = #-5 > \override TextSpanner #'(bound-details

Re: string-lines

2009-07-09 Thread Neil Puttock
2009/7/9 Jonathan Kulp : > Thanks for the help, Neil. I've added a snippet showing this feature to LSR > here: > > http://lsr.dsi.unimi.it/LSR/Item?u=1&id=616 Very nice. :) If you want to add a version, it's best to comment it out though. > A TODO is to turn it into a scheme function whereby you

Re: string-lines

2009-07-09 Thread Jonathan Kulp
Thanks for the help, Neil. I've added a snippet showing this feature to LSR here: http://lsr.dsi.unimi.it/LSR/Item?u=1&id=616 A TODO is to turn it into a scheme function whereby you could just type something like \stringNumberSpanner "5" to set all of these parameters: \override TextSpanne

Re: string-lines

2009-07-09 Thread Neil Puttock
2009/7/9 Jonathan Kulp : > One more adjustment to the "6" markup: > > \override TextSpanner #'(bound-details left text) = \markup { \circle \bold > \lower #.5 "6" } You can use stencil-align-dir-y instead of \lower here. \override TextSpanner #'font-shape = #'solid You can remove this. \over

Re: add-grace-properties in TabVoice context

2009-07-09 Thread Neil Puttock
2009/7/9 Marc Hohl : > I have changed your improved parentheses handler to get the font-size > for the parentheses from the TabNoteHead, so parentheses around > grace notes are scaled properly in tablature. Looks good. Let's just hope tablature users don't want to tweak the font-size of parenthe

Re: Help - trouble with tuplets

2009-07-09 Thread Robin Bannister
Karenee Herman wrote: Somehow, the bass line ends up offset from the treble The second bar of "lower" should beR2. (for a 3/4 bar). So it's not really the triplets giving trouble. please forgive me if this seems simple! Forgiven. Cheers, Robin _

Re: string-lines

2009-07-09 Thread Jonathan Kulp
Mario Moles wrote: In data giovedì 09 luglio 2009 18:02:31, -Eluze ha scritto: : > Jonathan Kulp-2 wrote: \override TextSpanner #'(bound-details left text) = \markup { \circle \bold "6 " } I don't like the look of the circled number very much--it doesn't look as good as the default string nu

Re: string-lines

2009-07-09 Thread Mario Moles
In data giovedì 09 luglio 2009 18:02:31, -Eluze ha scritto: : > Jonathan Kulp-2 wrote: > >\override TextSpanner #'(bound-details left text) = \markup { > > \circle \bold "6 " } > > > > I don't like the look of the circled number very much--it doesn't > > look as good as the default string numbe

Re: string-lines

2009-07-09 Thread -Eluze
Jonathan Kulp-2 wrote: > >\override TextSpanner #'(bound-details left text) = \markup { > \circle \bold "6 " } > > I don't like the look of the circled number very much--it doesn't > look as good as the default string number, but maybe you can > adjust it to look better. > the single sp

Re: Shifting down-stemmed notes rightwards

2009-07-09 Thread James E. Bailey
On 07.07.2009, at 20:53, Richard Sabey wrote: How can I shift down-stemmed notes rightwards? I don't mind the alto and tenor notes sharing a stem as they do in the third chord, but I need to tease them apart horizontally when they are a second apart, as in the second chord. I have tried ad

Re: string-lines

2009-07-09 Thread Jonathan Kulp
Excellent, Mario! Yes it's better with your changes. I will make a snippet for the LSR showing this hack. Best, Jon Mario Moles wrote: Grazie! Ottimo lavoro e forse così è migliore: \relative c { \clef "treble_8" \set stringNumberOrientations = #'(down) b16 d g b \textSpannerDown

Re: ANN: LilyPondTool 2.12.848 BETA

2009-07-09 Thread Kalen Mercer
Windows XP Professional, my bad ___ lilypond-user mailing list lilypond-user@gnu.org http://lists.gnu.org/mailman/listinfo/lilypond-user

RE: Shifting down-stemmed notes rightwards

2009-07-09 Thread Richard Sabey
Thank you for your suggestion, Gilles. I found that using \partcombine produced output that looked even worse for what I wanted. When used on my actual composition (i.e. not the example I provided in my original message), I found: * sometimes tenor notes are in the upper stave when they should

Re: Shifting down-stemmed notes rightwards

2009-07-09 Thread Gilles THIBAULT
How can I shift down-stemmed notes rightwards? Perhaps you can try \partcombine : http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Multiple-voices#Automatic-part-combining %%% \score { \new PianoStaff << \new Staff = "rh" \partcombine { c'' b' c'' c'' } {e' g' g' e' }

Re: Problem of chords with lilypond 2.10.33 under debian lenny

2009-07-09 Thread Valentin Villenave
2009/7/9 Le Piaf : > I hope you'll understand my english. > Please answer in very simple words, or in french if you can (in private > then) Greetings, though someone may answer your questions here in English, you might be interested in joining our French-speaking LilyPond mailing list: http://lis

Re: Problem of chords with lilypond 2.10.33 under debian lenny

2009-07-09 Thread Marc Hohl
Le Piaf schrieb: Hello everybody ! I just discover lilypond and want to make, in one page, a list of some chords with their names above. In order to do so, I tried to use \chordnames. I got two problems : First, not all the alterations are visible before each chord, because lilypond consider

Re: add-grace-properties in TabVoice context

2009-07-09 Thread Marc Hohl
Neil Puttock schrieb: [...] I'd suggest making this part of the default grace settings by adding the override directly to graceSettings and make-voice-props-set. Hello Neil, I have changed your improved parentheses handler to get the font-size for the parentheses from the TabNoteHead, so p

Re: Dutch download page (was: lilypond 2.13 download)

2009-07-09 Thread John Mandereau
2009/7/7 Graham Percival : > It involves the build system, just like the site in English. > odd python files, etc. I admit that these scripts are little or not documented. > How will it be different from the doc translations?  It's all > texinfo files.  In fact, these texinfo files don't have

Problem of chords with lilypond 2.10.33 under debian lenny

2009-07-09 Thread Le Piaf
Hello everybody ! I just discover lilypond and want to make, in one page, a list of some chords with their names above. In order to do so, I tried to use \chordnames. I got two problems : First, not all the alterations are visible before each chord, because lilypond considers that some altera