Re: repeats in parallel mode?

2010-07-11 Thread Phil Holmes
The problem appears to lie with the repeats. If you use the version I have below, the music works as you would expect. I'm not quite sure what you're trying to do with the repeats - repeat the first bar twice and the second bar twice? To debug problems like this is not too difficult: look at

Re: Only one title prints if I try to \include > 1 tune on a sheet

2010-07-11 Thread Phil Holmes
When you posted earlier, you were given 2 suggestions: 1. Add \paper{ print-all-headers = ##t } To the main file. 2. Put the \header blocks at the end of the \score block (from the Notation Reference, section 3.2.1). Have you tried these? (Clue - if you do, you will find the titles print

Re: Only one title prints if I try to \include > 1 tune on a sheet

2010-07-11 Thread Federico Bruni
As Phil said before, the main file should look like this: \version "2.12.2" \paper { print-all-headers = ##t } \include "Cocek.ly" \include "Bb_scale.ly" Then in the included files you should move the \header *inside* the \score block. You can find why in Learning Manual 3.1 and Notation

Downloading the Git repository

2010-07-11 Thread Nick Payne
In the section of the install doc at http://lilypond.org/doc/v2.13/Documentation/topdocs/INSTALL#getting-the-source-code that deals with this, there is a link titled "Starting with Git" pointing to the URL http://lilypond.org/doc/v2.13/Documentation/topdocs/contributor#starting-with-git. The d

Re: Barres and enclose-bounds

2010-07-11 Thread paulxiii
Thanks. I changed the version number a few times until I got some meaningful output from convert-ly. It couldn't do the whole job, but it gave an indication as to what needed to be changed. I've ended up with the following, which may be of help to others: barre = #(define-music-function (parser l

Re: repeats in parallel mode?

2010-07-11 Thread paulxiii
The only thing which seems to work for me, after experimenting for a while, is to add the repeats manually like this: \version "2.12.3" \parallelMusic #'(voiceA voiceB) { \key c \major \time 4/4 c4 c c c | \bar ":|:" %voiceA measure 1 c,4 c c c | \bar

Re: repeats in parallel mode?

2010-07-11 Thread paulxiii
You actually don't need that many \bar ":|:". Only one per bar and not two. c4 c c c | %voiceA measure 1 c,4 c c c | \bar ":|:" %voiceB measure 1 g4 g g g | %voiceA measure 2 g,4 g g g | \bar ":|:" %

Re: Barres and enclose-bounds

2010-07-11 Thread Phil Burfitt
Hi Paul, Here's my barre function (takes care of breaks as well). Hope it can be of some help or at least give you some ideas... barre = #(define-music-function (parser location padding text) (number? string?) #{ \once \override TextSpanner #'font-size = #-0.5 \once \override TextSpanner #'p

hiding barnumber only when rehearsalmark appears

2010-07-11 Thread Akira
Nowadays most concert band (or wind orchestra) score publishers use this style : * Print barnumber on each bar * But there is a rehearsal mark, hide it for example, ( [ ] means square/rectangle) 1 2 3 45 6[A]8 9 10 (Piccolo Music) (Flut

Re: hiding barnumber only when rehearsalmark appears

2010-07-11 Thread Kieren MacMillan
Hi Akira, > \once \override Score.BarNumber #'transparent = ##t > \mark \default > > but 2 problems ocurred. > One is that, because of setting #'transparent, the rehearsalmark is in > too higher position so that it can avoid barnumber.(barnumber is not > hid but just transparent.) That's because

Re: hiding barnumber only when rehearsalmark appears

2010-07-11 Thread Nick Baskin
I've encountered a similar problem in my scores. My solution has been to create a command "beforeMark = { \once \override Score.BarNumber #'break-visibility = ##(#f #f #f) }" at the beginning of the file, and then call it when I have a mark (i.e. \beforeMark \mark \default). It seems to work well f

skip grace was:Re: hiding barnumber only when rehearsalmark appears

2010-07-11 Thread Paul Scott
On Sun, Jul 11, 2010 at 09:12:03AM -0400, Kieren MacMillan wrote: > Hi Akira, > > Maybe it would if you put a skip grace before the override, so that the > timing is synched? Is that use of "skip grace" documented somewhere? Thanks, Paul Scott ___

Re: skip grace was:Re: hiding barnumber only when rehearsalmark appears

2010-07-11 Thread James Lowe
Yes. Notation Reference 1.2.6 Grace Notes (under Known Issues and Warnings). "Grace Note synchronization can also lead to surprises..." James On 11 Jul 2010, at 15:51, Paul Scott wrote: On Sun, Jul 11, 2010 at 09:12:03AM -0400, Kieren MacMillan wrote: Hi Akira, Maybe it would if you p

Re: repeats in parallel mode?

2010-07-11 Thread William Bajzek
On Jul 11, 2010, at 2:15 AM, Phil Holmes wrote: > The problem appears to lie with the repeats. If you use the version I have > below, the music works as you would expect. I'm not quite sure what you're > trying to do with the repeats - repeat the first bar twice and the second bar > twice?

Re: lilypond-user Digest, Vol 92, Issue 28

2010-07-11 Thread William Bajzek
Thanks; I guess that's not exactly ideal but it is good enough for me. On Jul 11, 2010, at 5:00 AM, paulxii wrote: > > The only thing which seems to work for me, after experimenting for a while, > is to add the repeats manually like this: > > \version "2.12.3" > > \parallelMusic #'(voiceA vo

Re: repeats in parallel mode?

2010-07-11 Thread Reinhold Kainhofer
Am Sonntag, 11. Juli 2010, um 05:20:19 schrieb William Bajzek: > I just read about the \parallelMusic function and was trying it out. First > of all, I'd like to say that I think it's great because it is a very > convenient way to lay out multi-voice music. The problem I've run into can > be seen i

Re: Downloading the Git repository

2010-07-11 Thread Patrick McCarty
On Sun, Jul 11, 2010 at 4:06 AM, Nick Payne wrote: > In the section of the install doc at > http://lilypond.org/doc/v2.13/Documentation/topdocs/INSTALL#getting-the-source-code > that deals with this, there is a link titled "Starting with Git" pointing to > the URL > http://lilypond.org/doc/v2.13/D

Re: skip grace was:Re: hiding barnumber only when rehearsalmark appears

2010-07-11 Thread Paul Scott
On Sun, Jul 11, 2010 at 04:38:33PM +0100, James Lowe wrote: > Yes. > > Notation Reference > > 1.2.6 > > Grace Notes (under Known Issues and Warnings). "Grace Note > synchronization can also lead to surprises..." Thanks but I'm quite familiar with grace note sychronization due to the old LilyPo

Re: hiding barnumber only when rehearsalmark appears

2010-07-11 Thread Neil Puttock
On 11 July 2010 15:36, Nick Baskin wrote: > I've encountered a similar problem in my scores. My solution has been to > create a command "beforeMark = { \once \override Score.BarNumber > #'break-visibility = ##(#f #f #f) }" at the beginning of the file, and then > call it when I have a mark (i.e. \

Re: Barres and enclose-bounds

2010-07-11 Thread Nick Payne
Here's another barre function: % % more attractive barring indication than the inbuilt one % Parameters % % ""% fret number (eg "5") % #osp% outside-staff-priority - normally set to #0 unless barre is colliding with other elemen

Re: Downloading the Git repository

2010-07-11 Thread Nick Payne
On 12/07/10 03:26, Patrick McCarty wrote: On Sun, Jul 11, 2010 at 4:06 AM, Nick Payne wrote: In the section of the install doc at http://lilypond.org/doc/v2.13/Documentation/topdocs/INSTALL#getting-the-source-code that deals with this, there is a link titled "Starting with Git" pointing to

Re: line break in unequal bars

2010-07-11 Thread Neil Puttock
On 10 July 2010 20:10, Neil Thornock wrote: > See modifications to your code below.  It seems like something with > Forbid_line_break_engraver should work instead of the *0, but I can't > figure it out.  This does work, though. That's an interesting approach, but your intuition about Forbid_line_

Special tempo indication in new version of lilypond

2010-07-11 Thread 胡海鹏 - Hu Haipeng
Hello, I know how to write special tempo indication like 4= ca120 in old versions of lilypond. But since the new ones have included \tempo text + tempo function, I don't know how to adjust it. Moreover, the indication is quite different from the snippet. At the end of my overture, there are bo

Re: Downloading the Git repository

2010-07-11 Thread Patrick McCarty
On Sun, Jul 11, 2010 at 2:10 PM, Nick Payne wrote: > On 12/07/10 03:26, Patrick McCarty wrote: >> >> How did you navigate to this INSTALL page? >> >> The page you should find is >> >> http://lilypond.org/doc/v2.13/Documentation/contributor/getting-the-source-code > > Two clicks from the home page