2.15.13 increasing cue font size

2011-09-28 Thread Paul Scott
Hi, How do I increase the size of cue notes? I've gotten quite used to cueDuring and its friends but I would like the cue notes to be slightly larger. I find the default to be too small. I was using Voice.fontsize = #-2 when I made my own cue notes. Thanks for any help, Paul Scott __

Slurring out of an alternative back to the beginning of a volta

2011-09-28 Thread Garrett Fitzgerald
I managed to get rid of the "unterminated slur" message when slurring back to the beginning of a repeat with the following code, based on earlier suggestions on the list. Sharing FWIW, if anything. \alternative { { a8 r r e16( \afterGrace f16 {\once \override Rest #'transparent

Problem with Kerning

2011-09-28 Thread Frank Steinmetzger
Hello list A few months ago I wrote about mis-shaped glyphs (about which noone was able to help). I recently found out that the feta font itself is borked on my Gentoo system (and I discovered the same errors in Debian Squeeze’s), both are 2.12.3 I think. So I installed lilypond in my virtual

Re: Bug Squad: 40-minute-a-week volunteer needed

2011-09-28 Thread Dmytro O. Redchuk
У ср., 28-го вер. 2011, о 11:38 Brett McCoy писали: > I'd love to help out. Lilypond is an essential part of my life these days. Great, thank you! So, you'll be scheduled for 20 minutes on Wednesday and 20 minutes on Saturday; please, let me know when you're ready; please, ask me anything if neces

Bug Squad: 40-minute-a-week volunteer needed

2011-09-28 Thread Dmytro O. Redchuk
Hi guys, In order to respond to bug reports in a prompt and efficient manner, we are seeking 1 person who is willing to work for 20 minutes, two times a week. Ideally this would be: 20 minutes on Wednesday 20 minutes on Saturday but if necessary we could reshuffle the days. This job is strict

Re: How to get Timing.measureLength from within Scheme?

2011-09-28 Thread Dmytro O. Redchuk
On Wed 28 Sep 2011, 16:09 Alberto Simões wrote: > On 28/09/2011 16:04, Dmytro O. Redchuk wrote: > >I am sorry, why not to use documented Score.measurePosition? Sorry, i meant suggested by docs .) -- Dmytro O. Redchuk"Easy to use" is easy to say. Bug Squad

Re: How to get Timing.measureLength from within Scheme?

2011-09-28 Thread Alberto Simões
On 28/09/2011 16:04, Dmytro O. Redchuk wrote: On Wed 28 Sep 2011, 15:49 Alberto Simões wrote: Hello I am trying to save Timing.measureLength in a little music function, but I am unable to find examples in the web of how to get that value (only how to set). My try (ok, most of the code was su

Re: How to get Timing.measureLength from within Scheme?

2011-09-28 Thread Dmytro O. Redchuk
On Wed 28 Sep 2011, 15:49 Alberto Simões wrote: > Hello > > I am trying to save Timing.measureLength in a little music function, > but I am unable to find examples in the web of how to get that value > (only how to set). > > My try (ok, most of the code was suggested by Jan-Peter), is something l

How to get Timing.measureLength from within Scheme?

2011-09-28 Thread Alberto Simões
Hello I am trying to save Timing.measureLength in a little music function, but I am unable to find examples in the web of how to get that value (only how to set). My try (ok, most of the code was suggested by Jan-Peter), is something like: partialInline = #(define-music-function (parser loca

Re: \partial only on first measure?

2011-09-28 Thread Alberto Simões
Hello, On 28/09/2011 08:02, Jan-Peter Voigt wrote: Hello Alberto, in lilypond you achieve less typing with defining music-funtions: --snip-- partialInline = #(define-music-function (parser location nom den mus)(integer? integer? ly:music?) #{ \set Timing.measureLength = #(ly:make-moment $nom $

Re: time signature between staves

2011-09-28 Thread Jan-Peter Voigt
Yes it is possible! You could use a Dynamics context. I usaly have a meta-var containing the run of the music. So I can put it in the whole partitura and in the single voice sheets. So my setup has a structure like this: --snip-- \version "2.14.2" meta = { \time 3/4 s2. | \time 4/4 s1 | \tim

Re: scaling both durations and displayed note values?

2011-09-28 Thread James Harkins
> From: David Kastrup > James Harkins writes: > > > Is there a way to scale the durations of a passage of music, say, by a > > factor of 2, so that not only do the notes take twice as much time, > > but the displayed note values are also doubled? > > > > \scaleDurations does only the former, but

Re: Removing Empty Staves [2.12 vs 2.14]

2011-09-28 Thread Urs Liska
Do you use a PianoStaff in your example? I think this has been changed on purpose in order to keep PianoStaff-s intact - as the pianist generally will prefer an empty staff over a removed one. Am 28.09.2011 12:48, schrieb Alberto Simões: Hello It seems that the 2.12 command \RemoveE

\partcombine with \markups

2011-09-28 Thread Aurélien Bello
When you run the following lines, you get two markups. Articulations and dynamics are not double printed. Does anybody know if the partcombine tool can be modified? Cheers, Aurélien Bello one = \relative c'' { c2^"test"-> } two = \relative c' { c2^"test"-> } \new Staff \partcombine \one

Re: Removing Empty Staves [2.12 vs 2.14]

2011-09-28 Thread Xavier Scheuer
2011/9/28 Alberto Simões : > > Hello > > Trying > >\context { > \PianoStaff > \remove "Keep_alive_together_engraver" > \Staff \RemoveEmptyStaves > \override VerticalAxisGroup #'remove-first = ##t >} > > But I get complains: > > _.ly:94:6: error: syntax error, unexpe

Re: Including Lilypond files (Was: \partial only on first measure?)

2011-09-28 Thread Dmytro O. Redchuk
On Wed 28 Sep 2011, 11:51 Alberto Simões wrote: > >>Yes, I can also use -I, it seems. But defining an environment > >>variable would make it a lot cleaner :) > >Can you make an alias? > > > >I guess it's possible in bash (don't know about your system): > >alias lilypond='lilypond -Ifoo.lyi' > > >

Re: Removing Empty Staves [2.12 vs 2.14]

2011-09-28 Thread Alberto Simões
ok, fixed :) On 28/09/2011 12:13, Alberto Simões wrote: \context { \PianoStaff \remove "Keep_alive_together_engraver" \Staff \RemoveEmptyStaves \override VerticalAxisGroup #'remove-first = ##t } use two contexts :) and it seems to work. Thanks -- Alberto Simoes CEHUM ___

Re: Removing Empty Staves [2.12 vs 2.14]

2011-09-28 Thread Alberto Simões
On 28/09/2011 12:05, Xavier Scheuer wrote: 2011/9/28 Alberto Simões: Hello It seems that the 2.12 command \RemoveEmptyStaffContext is, in 2.14, \Staff \RemoveEmptyStaves But the behavior is not exactly the same. In the attached image, left is 2.14, right is 2.12. How to ge

Re: Removing Empty Staves [2.12 vs 2.14]

2011-09-28 Thread Xavier Scheuer
2011/9/28 Alberto Simões : > > Hello > > It seems that the 2.12 command > >       \RemoveEmptyStaffContext > > is, in 2.14, > >       \Staff \RemoveEmptyStaves > > But the behavior is not exactly the same. > In the attached image, left is 2.14, right is 2.12. > > How to get the 2.12 behavior with 2

Re: Including Lilypond files (Was: \partial only on first measure?)

2011-09-28 Thread Alberto Simões
On 28/09/2011 11:48, Dmytro O. Redchuk wrote: On Wed 28 Sep 2011, 11:17 Alberto Simões wrote: On 28/09/2011 10:49, Urs Liska wrote: Is there any way to write some kind of the equivalent to the latex .sty file, where I can define these files? Or is it just a standard .ly file, \include'd? I

Re: Including Lilypond files (Was: \partial only on first measure?)

2011-09-28 Thread Dmytro O. Redchuk
On Wed 28 Sep 2011, 11:17 Alberto Simões wrote: > > > On 28/09/2011 10:49, Urs Liska wrote: > >>Is there any way to write some kind of the equivalent to the latex > >>.sty file, where I can define these files? Or is it just a standard > >>.ly file, \include'd? > >> > >>If so, is there any INCLUDE

Including Lilypond files (Was: \partial only on first measure?)

2011-09-28 Thread Alberto Simões
On 28/09/2011 10:49, Urs Liska wrote: Is there any way to write some kind of the equivalent to the latex .sty file, where I can define these files? Or is it just a standard .ly file, \include'd? If so, is there any INCLUDEPATH I can set, so I do not need to copy it for each music I use? Put

Re: \partial only on first measure?

2011-09-28 Thread Urs Liska
Am 28.09.2011 11:31, schrieb Alberto Simões: On 28/09/2011 09:07, Neil Puttock wrote: On 28 September 2011 09:04, David Kastrup wrote: With the current development version, you can write this as partialInline = #(define-music-function (parser location dur mus) (ly:duration? ly:music?) #{

Re: \partial only on first measure?

2011-09-28 Thread Alberto Simões
On 28/09/2011 09:07, Neil Puttock wrote: On 28 September 2011 09:04, David Kastrup wrote: With the current development version, you can write this as partialInline = #(define-music-function (parser location dur mus) (ly:duration? ly:music?) #{ \set Timing.measureLength = $dur measur

Re: \partial only on first measure?

2011-09-28 Thread Henning Hraban Ramm
Am 2011-09-27 um 22:38 schrieb Alberto Simões: OK, I used that from time to time for psalms, but was expecting a less-typing solution :) Good to know I'm in the good way I had the same problem. Often you can simply leave \partial out without replacement. Greetlings from Lake Constance --

Re: \partial only on first measure?

2011-09-28 Thread David Kastrup
Neil Puttock writes: > On 28 September 2011 09:04, David Kastrup wrote: > >> With the current development version, you can write this as >> >> partialInline = #(define-music-function (parser location dur mus) >> (ly:duration? ly:music?) >>  #{ >>    \set Timing.measureLength = $dur > > measureLe

Re: \partial only on first measure?

2011-09-28 Thread Neil Puttock
On 28 September 2011 09:04, David Kastrup wrote: > With the current development version, you can write this as > > partialInline = #(define-music-function (parser location dur mus) > (ly:duration? ly:music?) >  #{ >    \set Timing.measureLength = $dur measureLength is a moment, so you have to co

Re: \partial only on first measure?

2011-09-28 Thread David Kastrup
Jan-Peter Voigt writes: > in lilypond you achieve less typing with defining music-funtions: > > --snip-- > partialInline = #(define-music-function (parser location nom den > mus)(integer? integer? ly:music?) > #{ > \set Timing.measureLength = #(ly:make-moment $nom $den) > $mus > \un

Installing Frescobaldi 2 [WAS: Alpha-release of Frescobaldi 2.0]

2011-09-28 Thread Federico Bruni
Il 28/09/2011 02:15, MING TSANG ha scritto: Hi, lilypond user: I have following the frescobaldi alpha release. I sound interesting. I would like to try but don't have experience installing software. Currently I have window 7 and linux fedora 15. I have jedit & lilypond 2.15.13 in window7;

Re: FooterMarkup, tagline, copyright

2011-09-28 Thread Nick Payne
On 27/09/11 23:00, Thomas Scharkowski wrote: Maybe I have overlooked or misunderstood something: I expected the following code to produce three pages, with "copyright" on the first page, "footer" on the second, and "tagline" on the third. Removing "oddFooterMarkup" leads to the expected copyrig

Re: \partial only on first measure?

2011-09-28 Thread Jan-Peter Voigt
Hello Alberto, in lilypond you achieve less typing with defining music-funtions: --snip-- partialInline = #(define-music-function (parser location nom den mus)(integer? integer? ly:music?) #{ \set Timing.measureLength = #(ly:make-moment $nom $den) $mus \unset Timing.measureLength