Re: Text spanner text in the middle

2015-08-16 Thread Jacques Menu
Thanks Ham, it does compile with LP 2.19.24! JM Le 16 août 2015 à 03:03, Thomas Morley thomasmorle...@gmail.com a écrit : 2015-08-15 4:20 GMT+02:00 Andrew Bernard andrew.bern...@gmail.com: If we can have left text set, and right text set, having centred text set does not seem

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread Simon Albrecht
Am 16.08.2015 um 11:32 schrieb BB: Sorry, cannot find any any c-p in the attached code to check the allegation putting the markup p below the note, not a fingering indication.! Well, just try and compile something like %% { c-p } %% And, yes, it is markup: insert

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread David Kastrup
Simon Albrecht simon.albre...@mail.de writes: Am 16.08.2015 um 14:02 schrieb Thomas Morley: The quite verbose \rightHandFinger #1 can be shortened as already shown in this thread. Let me quote NR again: #(define RH rightHandFinger) And since 2.19.24 we have a non-scheme alternative for

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread BB
Thank you very much for the link! Right hand fingering very hidden at the end of the page! As one might see on the bottom of the page it is available in Other languages: deutsch http://lilypond.org/doc/v2.18/Documentation/notation/common-notation-for-fretted-strings.de.html, español

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread David Kastrup
Thomas Morley thomasmorle...@gmail.com writes: Hi, { c'1-p } is a shortcut for { c'1-\markup { p } } both a TextScript. Both a TextScript but with different meaning: \displayLilyMusic { c'1-p } \displayLilyMusic { c'1-\markup { p } } \displayLilyMusic { c'1-\markup p } outputs {

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread Thomas Morley
2015-08-16 12:58 GMT+02:00 BB bb-543...@telecolumbus.net: \version 2.18.0 #(set-global-staff-size 25) { \override TextScript.color = #red c4^p c4-p c-2 c-3 c-4 c^\markup { \finger 2 - 3 } } I think I understand what you think to be wrong. Obviously you are refrencing to

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread David Kastrup
BB bb-543...@telecolumbus.net writes: \version 2.18.0 #(set-global-staff-size 25) { \override TextScript.color = #red c4^p c4-p c-2 c-3 c-4 c^\markup { \finger 2 - 3 } } I think I understand what you think to be wrong. Obviously you are refrencing to version 2.10.33

Re: Beam exceptions

2015-08-16 Thread Wols Lists
On 16/08/15 04:28, Andrew Bernard wrote: In the following MWE, I would like to have the second bar have a primary beam across all the notes, as per the first bar. I imagine it may require more than what I have here, possibly something to do with setting up beamExceptions? How does one do this?

Re: Beam exceptions

2015-08-16 Thread Simon Albrecht
Am 16.08.2015 um 05:28 schrieb Andrew Bernard: In the following MWE, I would like to have the second bar have a primary beam across all the notes, as per the first bar. I imagine it may require more than what I have here, possibly something to do with setting up beamExceptions? Unfortunately,

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread BB
Sorry, cannot find any any c-p in the attached code to check the allegation putting the markup p below the note, not a fingering indication.! On 16.08.2015 00:24, Nick Payne wrote: c-p is putting the markup p below the note, not a fingering indication.

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread Simon Albrecht
Am 16.08.2015 um 14:02 schrieb Thomas Morley: The quite verbose \rightHandFinger #1 can be shortened as already shown in this thread. Let me quote NR again: #(define RH rightHandFinger) And since 2.19.24 we have a non-scheme alternative for this: RH = \rightHandFinger \etc Perhaps it might

Re: automatic bar number following multimeasure rest

2015-08-16 Thread bobr...@centrum.is
Klaus, I haven't tested that. I'm sure it probably works. Unfortunately, this is what I was trying not to do. My reason for wanting an automatic solution is for making rehearsals easier for parts with lots of rests. Start at measure x, can be a bother with many blocks of multi-measure

Re: extending an OttavaBracket to the left?

2015-08-16 Thread Andrew Bernard
Hi Bruno, For what it is worth, just using the shorten-pair property for OttavaBracket works fine in 2.19.25, with no hacks needed. I know you are on 2.18.2. I can honestly say that I pound 2.19 with a mighty and heavy hammer on immensely complex keyboard music scores and I have only ever

automatic bar number following multimeasure rest

2015-08-16 Thread bobr...@centrum.is
Is there a way to automatically have a measure number printed after a multi-measure rest? I mean, aside from/in addition to the default behavior of placing them at the beginning of a system. I did try searching for a solution but did not find anything. -David

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread BB
In the thread shortcuts for righthand fingerings i found some code. I add it here with some minor changes: \version 2.19.15 #(set-global-staff-size 45) %%% Systemgröße % shortcuts for stroke finger indications % can't use lower case a or p, so use upper case for all

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread Trevor Daniels
David Kastrup wrote Sunday, August 16, 2015 12:32 PM BB bb-543...@telecolumbus.net writes: I think I understand what you think to be wrong. Obviously you are refrencing to version 2.10.33 stable branch of ilypond

Re: automatic bar number following multimeasure rest

2015-08-16 Thread Klaus Blum
Hi David, I don't know an automatic solution, but would it be interesting to set it manually? % -- \version 2.18.2 showBarnum = { \once \override Score.BarNumber.break-visibility = #end-of-line-invisible \once \override

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread BB
Sorry, that's to much for my tiny brain! \version 2.18.2 { \voiceOne c'1-p c'1_p } \displayLilyMusic { \voiceOne c'1-p } { c'1-p } { c'1-\markup \line { p} } { c'1-p } On 16.08.2015 15:11, David Kastrup wrote: Thomas Morley thomasmorle...@gmail.com writes: Hi, { c'1-p } is a

Re: automatic bar number following multimeasure rest

2015-08-16 Thread Thomas Morley
2015-08-16 13:27 GMT+02:00 bobr...@centrum.is bobr...@centrum.is: Is there a way to automatically have a measure number printed after a multi-measure rest? I mean, aside from/in addition to the default behavior of placing them at the beginning of a system. I did try searching for a

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread David Kastrup
BB bb-543...@telecolumbus.net writes: Well, if you say, there is a need ... you oversee the side effects, hidden for me. You are confusing side effects with documented intentional behavior not directly matching my use case. The quotes are not a real problem. The inconsistency is illustrated

Re: extending an OttavaBracket to the left?

2015-08-16 Thread Bruno Ruviaro
Thanks, Andrew. I will try 2.19.25 in my next project -- I'd rather not upgrade now in the middle of the current work. But good to know that the ottava solution (and others) will be simpler! Bruno On Sun, Aug 16, 2015 at 6:21 AM, Andrew Bernard andrew.bern...@gmail.com wrote: Hi Bruno, For

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread BB
In my logic the two lines indicate the first line of notes. So I would expect the p on top in both cases. If you find that logic or not, I know to handle such problems now. I have to thank you very much and I am out and away from this thread. Thank you! On 16.08.2015 16:28, Simon Albrecht

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread Simon Albrecht
Am 16.08.2015 um 16:20 schrieb BB: Well, if you say, there is a need ... you oversee the side effects, hidden for me. The quotes are not a real problem. The inconsistency is illustrated in this example: \version 2.19.2 { \voiceOne c'1-p} { c'1-p } Please be more explicit. I may only guess

Re: Guitar Fret Diagram - scale degree below string

2015-08-16 Thread Klaus Blum
Hi tone, welcome to the forum! :-) The most elegant solution would be to take fret-diagrams.scm and use it to build a modified fretboard command that accepts markup for fingerings. But as I'm not an expert, this is out of reach for me. Anyway, I've played around with explicit positioning of

Re: problem to code page-numbers

2015-08-16 Thread Thomas Morley
2015-08-15 18:13 GMT+02:00 David Kastrup d...@gnu.org: Thomas Morley thomasmorle...@gmail.com writes: Finally I want to be able to set every bookparts first-page-numbers indepent and solve the request here: http://lists.gnu.org/archive/html/lilypond-user/2015-08/msg00237.html As far as I

Re: Guitar Fret Diagram - scale degree below string

2015-08-16 Thread tone
Thanks! That does exactly what I want. I will paste this into my existing chord charts. Anybody have a simpler solution? -- View this message in context: http://lilypond.1069038.n5.nabble.com/Guitar-Fret-Diagram-scale-degree-below-string-tp179664p179696.html Sent from the User mailing list

Re: automatic bar number following multimeasure rest

2015-08-16 Thread bobr...@centrum.is
Yes! Nice! Thank you! -David - Original Message - From: Thomas Morley thomasmorle...@gmail.com To: bobr...@centrum.is Cc: Lillypond Users Mailing List lilypond-user@gnu.org Sent: Sunday, August 16, 2015 1:47:30 PM Subject: Re: automatic bar number following multimeasure rest

Re: automatic bar number following multimeasure rest

2015-08-16 Thread Simon Albrecht
Am 16.08.2015 um 15:27 schrieb bobr...@centrum.is: Klaus, I haven't tested that. I'm sure it probably works. Unfortunately, this is what I was trying not to do. My reason for wanting an automatic solution is for making rehearsals easier for parts with lots of rests. Start at measure x,

Re: Guitar Fret Diagram - scale degree below string

2015-08-16 Thread Thomas Morley
2015-08-16 16:34 GMT+02:00 Klaus Blum benbigno...@gmx.de: Hi tone, welcome to the forum! :-) The most elegant solution would be to take fret-diagrams.scm and use it to build a modified fretboard command that accepts markup for fingerings. But as I'm not an expert, this is out of reach for

Solved: Guitar Chord Fret Diagram With Scale Degree Below String

2015-08-16 Thread tone
*Solved*: Guitar Chord Fret Diagram With Scale Degree Below Each String Here is one method of placing the scale degree below each string in a guitar chord fret diagram, as suggested by Klaus. I have also included files with the LilyJAZZ fonts and stylesheet (bottom of page).

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread David Kastrup
BB bb-543...@telecolumbus.net writes: Thank you very much for the link! Right hand fingering very hidden at the end of the page! As one might see on the bottom of the page it is available in Other languages: deutsch

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread BB
Well, if you say, there is a need ... you oversee the side effects, hidden for me. The quotes are not a real problem. The inconsistency is illustrated in this example: \version 2.19.2 { \voiceOne c'1-p} { c'1-p } Please compile it and you might see, that there must be a way to work, let

Re: automatic bar number following multimeasure rest

2015-08-16 Thread Jacques Menu
Hello Harm, Thanks a lot, that solves a problem I had too! JM Le 16 août 2015 à 15:47, Thomas Morley thomasmorle...@gmail.com a écrit : 2015-08-16 13:27 GMT+02:00 bobr...@centrum.is bobr...@centrum.is: Is there a way to automatically have a measure number printed after a multi-measure

Re: Can't find right hand fingering without string #'s

2015-08-16 Thread BB
\version 2.18.0 #(set-global-staff-size 25) { \override TextScript.color = #red c4^p c4-p c-2 c-3 c-4 c^\markup { \finger 2 - 3 } } I think I understand what you think to be wrong. Obviously you are refrencing to version 2.10.33 stable branch of ilypond

Re: format-mark function for A, B, C, …, X, Y, Z, Aa, Bb, Cc, …

2015-08-16 Thread Wols Lists
On 16/08/15 20:21, Malte Meyn wrote: Hi list, sometimes there are more than 25 or 26 rehearsal marks in a piece. LilyPond’s format-mark-(alphabet|letters) function and friends continue after X, Y, Z with AA, AB, AC, … I have never seen this in printed scores. Instead all scores I’ve seen

Re: Guitar Fret Diagram - scale degree below string

2015-08-16 Thread Klaus Blum
Hi Tone, tone wrote How can I add more space between the bottom of the strings (fret diagram) and the scale degrees? the function produces a column: fret-diagram and the overlay stuff are stacked on top of each other. Between them, you can insert empty vertical space by \vspace: %

Re: format-mark function for A, B, C, …, X, Y, Z, Aa, Bb, Cc, …

2015-08-16 Thread Thomas Morley
2015-08-16 21:21 GMT+02:00 Malte Meyn lilyp...@maltemeyn.de: Hi list, sometimes there are more than 25 or 26 rehearsal marks in a piece. LilyPond’s format-mark-(alphabet|letters) function and friends continue after X, Y, Z with AA, AB, AC, … I have never seen this in printed scores. Instead

Re: Guitar Fret Diagram - scale degree below string

2015-08-16 Thread tone
How can I add more space between the bottom of the strings (fret diagram) and the scale degrees? When there are not any /accidentals/, the numbers are too close to the strings. -- View this message in context:

Re: format-mark function for A, B, C, …, X, Y, Z, Aa, Bb, Cc, …

2015-08-16 Thread David Kastrup
Thomas Morley thomasmorle...@gmail.com writes: 2015-08-16 21:21 GMT+02:00 Malte Meyn lilyp...@maltemeyn.de: Hi list, sometimes there are more than 25 or 26 rehearsal marks in a piece. LilyPond’s format-mark-(alphabet|letters) function and friends continue after X, Y, Z with AA, AB, AC, …