finger stroke position

2012-08-08 Thread pabuhr
Is it possible to make the left bar look like the right bar below? Specifically, there is a clash with the triple number even though I specified: StrokeFinger #'add-stem-support = ##t and I would like the finger strokes to lineup vertically rather than following the note height. Using

guide finger

2012-08-19 Thread pabuhr
In *classical* guitar-music, there is a finger augmentation called a guide finger indicating left-hand shifting. Nick Payne uses a mechanism based on the glissando. I found this code written for a finger shift on a violin, which I like because it handles finger location and color, etc. However,

Re: guide finger

2012-08-20 Thread pabuhr
Thank you so much. However, because rotate performs its rotation around the center of the character I need to make a small adjustment. There is a rotation routine allowing rotation at an arbitrary point but it appears to be solely for music not markups. I tried the following change using translate

easyHeadsOn

2012-08-20 Thread pabuhr
This is probably a historical issue after reading some older posts, but I can't directly change the size of the notehead for easyHeadsOn. I want the note heads to be BIG so it is easy to read (and pronounce) the note. Below is my attempt at adjusting the notehead size directly. Changing the value

Re: guide finger

2012-08-21 Thread pabuhr
I suppose you're thinking of ly:stencil-rotate. Brilliant! Now let me see if I can reward your patience by showing you I have learned something. The rotation needs to be along the right centre (center) so the character appears to rotate in the middle of the finger number, which I figured

Re: lilypondfile

2012-08-27 Thread pabuhr
The vertical spacing between systems in lilypond-book is established by LaTeX, not LilyPond, so most spacing parameters will not be effective. Ouch! 8-( Having to fuss with vertical spacing in two places is unfortunate, especially since the latex version only gives a fixed spacing whereas

Re: lilypondfile

2012-08-27 Thread pabuhr
Is there a way to generate an eps file directly as for a ps file? I need the bounding box to include the exact output into latex (I'm not using pdflatex). I tried manually converting the ps to eps: ps2pdf generates a file that is unusable (go figure), and convert generates a low quality image

Re: lilypondfile

2012-08-27 Thread pabuhr
Is there a way to generate an eps file directly as for a ps file? I need the bounding box to include the exact output into latex (I'm not using pdflatex). I tried manually converting the ps to eps: ps2pdf generates a file that is unusable (go figure), and convert generates a low

header font size

2012-08-27 Thread pabuhr
As I crank up the global-staff-size, the heading text gets LARGE. I'd like to uniformly reduce the size of the heading text like this: \override Score.HeaderText #'font-size = #-1 but HeaderText is not the magic word. Is there a magic word? I did look and could not find it.

Re: lilypondfile

2012-08-28 Thread pabuhr
Perfect, except it still generates a PDF file, which I don't need and I could not find an command-line option to prevent the PDF from being created. But that's what a Makefile is for: I just delete the PDF. Lilypond also has a --ps option So what you want is: lilypond

Re: lilypondfile

2012-08-28 Thread pabuhr
I've not tried this to confirm it's correct, but my expectation is that the syntax is lilypond options filename So you should write lilypond -o fred mary.ly Works! I'm just an old C programmer and always put the '-o' at the end of the command. 8-( Thanks.

Re: header font size

2012-08-28 Thread pabuhr
As I crank up the global-staff-size, the heading text gets LARGE. I'd like to uniformly reduce the size of the heading text like this: \override Score.HeaderText #'font-size = #-1 I set the font size explicitly: subtitle = \markup {\fontsize #5 No. 12. Quintet Finale}

spacing

2012-09-01 Thread pabuhr
I have a vertical spacing problem with MetronomeMark and rhythmMark. The include for rhythmMark.ly comes from here: http://lsr.dsi.unimi.it/LSR/Snippet?id=204 In the following example, I have moved the MetronomeMark down and to the left below the highest beam. However, a ghost spacing for

Lyric vertical spacing

2012-09-02 Thread pabuhr
Is there a way to control the vertical spacing between the lines of the lyrics? I want to reduce the spacing slightly between the lines to see if I can get a piece to fit on one page. I tried playing with these but to no avail. \override Score.LyricSpace #'padding = #0 \override Score.LyricSpace

finger/ note position

2012-09-03 Thread pabuhr
The following snippet illustrates two problem I'm struggling with. 1. In the first bar, the finger number 2 is not beside the B note because of the sharp above it in a different voice. I can tweak the finger number back into position beside the B note, but I have a number of these cases in

Re: finger/ note position

2012-09-04 Thread pabuhr
For problem 1, if you add \override Fingering #'script-priority = #-100 Perfect. Nick, I added this line to my copy of your guitar file: fp = \override Fingering #'script-priority = #-100 For problem 2, see the function ncShift below. Perfect. And this was already in your guitar file

beatStructure

2012-09-23 Thread pabuhr
I've tried everything but I can't get the first bar without square brackets to look like the second bar with square brackets. Can someone make it so. \version 2.16.0 \language english #(set-global-staff-size 24) \score { \context Voice = one { \key g \major \time 4/4

EasyHeadsOn

2012-09-25 Thread pabuhr
I want large note names with EasyHeadsOn for teaching. I did the following hacks: 1. commented out the explicit setting of NoteHead #'font-size in EasyHeadsOn so I could increase the font size. 2. changed the constant dividend in Brew-ez-stencil: (radius (/ (+ staff-space

notehead overlap

2012-09-26 Thread pabuhr
Is there an easy way to get the 1st/9th noteheads to overlap like the 7th/15th noteheads overlap? \version 2.16.0 \language english #(set-global-staff-size 25) su = \stemUp sd = \stemDown melody = \relative c'' { { \sd a,4. a8 } \\ { \su a16 a' c a c a a, a'} { \sd d,4. d8 } \\ {

Re: Glissando between single notes in chord

2012-10-06 Thread pabuhr
I'm using glissandos to indicate a guide finger in fingering, and in ... Hey Nick, we certainly struggle with indicating a guide finger. 8-) First, an observation, which I know you are already aware of, but I'll make it anyway. It is important to differentiate between the glissando, which

Re: Glissando between single notes in chord

2012-10-17 Thread pabuhr
I've been working on the last version of David Nalesnik's guide-finger code. The reason is a horizontal and vertical placement problem when the guide line is long and/or at a steep angle. I have managed to fix the vertical problem, but the horizontal problem has me flummoxed. The example below

Re: enlarge vertical distance in time signature

2012-10-29 Thread pabuhr
I consider it much nicer to make strg of type fraction?, and then num can be (car strg) and denom can be (cdr strg). and can just be \spreadTimeSignature #8 2/4 ... which is nicer on the eyes. I was intrigued and tried to modify the code as you suggested as a learning exercise. But I

Re: enlarge vertical distance in time signature

2012-10-30 Thread pabuhr
Other than that (same with denom), the code looks fine to me. Works! However, (and there is always a however ;-), the font and font size are not the same as the regular (default) time signature. Is there a a way to grab these two pieces of information from the regular timestamp stencil and

Note Exercise, Guitar

2013-02-17 Thread pabuhr
I'm creating a simple note exercise for guitar students (see below). I have 3 problems: 1. The lyric underscores are too close to the low E so there is no room to write the note name. How do I add extra padding (spacing) between the staff and the lyrics? 2. How do I tweak the vocalName

Re: Note Exercise, Guitar

2013-02-17 Thread pabuhr
instead of using shortVocalName ... you could also use stanzas: Perfect! I should have seen stanza, but missed it. So below is the result. I tried to create a macro, Fred, to replace the many repeated lines, but was unsuccessful. Suggestions on how to make it work? Thanks.

Adrian le Roy

2013-03-03 Thread pabuhr
This question is not about lilypond, so feel free to shame me. I have played a few Adrian le Roy pieces on guitar and enjoyed them. I'd like to go back to the original manuscripts and write out a few songs in lilypond for teaching purpose (and no copyright issues). However, easier said than done.

tempo failure

2013-11-11 Thread pabuhr
This lilypond code snippet: %% Generated by lilypond-book.py %% Options: [exampleindent=10.16\mm,fragment,indent=0\mm,line-width=160\mm,quote,relative=1] \include lilypond-book-preamble.ly % % Start cut--pastable-section %

fingering font

2013-12-24 Thread pabuhr
I've looked but I can't find the answer. I want all the fingering symbols to be in a san-serif font. This: \layout { \override Score.Fingering #'font-family = #'sans } % layout does not work. ___ lilypond-user mailing list

Re: Odp: fingering font

2013-12-24 Thread pabuhr
You can always do: \override Score.Fingering #'font-name = #Vera Bold and replace Vera Bold with name of your preferred font. Thanks, \override Score.Fingering #'font-name = #sans-serif ___ lilypond-user mailing list

shorten stem

2013-12-25 Thread pabuhr
Merry Christmas, if anyone is out there today. I'm trying to squeeze a piece onto a single page, and I'm fussing with stem direction to control the height of the lines. I got the song to fit on a page, except there are few note/beam clashes (see example below). Is there a way to manually raise

Re: shorten stem

2013-12-25 Thread pabuhr
You can explicitly set the position of the left and right ends of a beam with \override Beam #'positions. Perfect. It's a bit fussy getting the numbers right but I like the control. BTW, I had the slope macro in the suite of guitar macros I got from you a few years ago and which I use

note / rest clash

2013-12-26 Thread pabuhr
How do I move the rests further to the right to avoid the clashing note columns? \version 2.16.0 melody = \relative c' { \time 3/4 { \stemDown b,2 b4\rest } \\ { g'4 g g } \\ { \stemUp d'2 d4\rest } | \break } \score { \context Voice {

decrescendo mark

2014-01-12 Thread pabuhr
I want the decrescendo mark to extend from the first bar into the second bar, ending under the c,4 node. What do I have to do to make this happen? \version 2.16.0 melody = \relative c' { \time 2/4 { \stemDown d,8\ [ g g, g' ] } \\ { \stemUp b4 b } | { \stemDown c,4\! c8 \rest }

RehearsalMark

2014-01-12 Thread pabuhr
I'm sorry, I can't make this example smaller and generate the problem. I want line 2 to end with the mark Fine, but the mark Fine appears at the start of line 3. How do I get Fine to appear at the end of line 2? \version 2.16.0 melody = \relative c' { \time 2/4 \partial 8 \repeat

Re: decrescendo mark

2014-01-12 Thread pabuhr
I want the decrescendo mark to extend from the first bar into the second bar, ending under the c,4 node. What do I have to do to make this happen? Search the documentation for “to-barline”. Perfect. If I'd flick one more page, I would have found it.