Re: BarNumber 'break-visibility

2008-03-13 Thread Andrew Black - lists

Mats Bengtsson wrote:


Why not use the official documentation?
http://lilypond.org/doc/v2.11/Documentation/user/lilypond-internals/item_002dinterface#item_002dinterface 


I did look up in the index to _lilypond-internals_ and could find 
anything very relevant.   How does one find the page that you quoted.



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


BarNumber 'break-visibility

2008-03-12 Thread Andrew Black - lists

I am a little confused by the following :

 \override Score.BarNumber #'break-visibility = ##(#f #t #t)
 \override Score.BarNumber #'break-visibility
   = #end-of-line-invisible

 - what is the default for before you tweak
 - by setting end-of-line-invisible do  I set the other places _visible_

I want to put bar numbers every 5 I have successfully done  but will be 
more likely to remember it if I understand the thinking behind it.


I have looked at 
http://lilypond.org/doc/v2.11/Documentation/user/lilypond/Bar-numbers#Bar-numbers 
but still am confused.



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Numbers in variable names Re: thoughts

2007-01-01 Thread Andrew Black - lists

Han-Wen Nienhuys wrote:



  c4_\staccato_\markup { bla }

does this reference \staccato or \staccato_ ?

It might be possible to enable numbers, though.  I would welcome an analysis.


I would really like to see numbers in name of variables.
I am not expert on parsers so apologies if this is hard but...

If you have
 myvar = something
 myvar1 = something else
I would expect that
  \myvar1  refers to the variable myvar1
  \myvar 1 refers to the var myvar followed by 1



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Help with lyric contexts

2006-12-17 Thread Andrew Black - lists

I am probably doing something really silly, but this is driving me nuts

\version 2.8.6
\score
{
 \new Voice = cantor{ a c b }
 \new Lyrics \lyricsto cantor { please work }

}

../exper/vocal_word.ly:5:5: error: syntax error, unexpected \\new

 \new Lyrics \lyricsto cantor { please work }


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: archives

2006-12-06 Thread Andrew Black - lists



Is there an archive anywhere to search for answers to certain questions,
so as not to repeat the same questions all the time?


http://www.nabble.com/Gnu---Lilypond-f1718.html

may also help


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Number of pages output

2006-12-05 Thread Andrew Black - lists
Is it possible to print out the number of pages that Lilypond has output 
to a PDF.


Or even better, can you add a check in the code that you are on the page 
you expect (a bit like barNumberCheck).  So I could put

  \pageNumberCheck  2
at the end of part and if it has spilled onto 3 pages I can investigate.



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


MIDI volumes

2006-12-03 Thread Andrew Black - lists
I am trying to change the volume of a Midi track (want one louder than 
the rest).  All I can find is the following which I don't understand.


midiMaximumVolume (number)
Analogous to midiMinimumVolume.
midiMinimumVolume (number)
Sets the minimum loudness for MIDI. Ranges from 0 to 1.

Related question, how do I know if what context these properties apply 
to (staff, voice etc?)


Andrew


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


More than one word to a note

2006-10-29 Thread Andrew Black - lists

Hi
I want to set more than one word to a note . So for example I might have

Semibreve| minim minim
c1   | c2 c2
Glory be to the father and to the

Cheers



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Use of a global and contexts

2006-09-12 Thread Andrew Black - lists

I am trying to get a global section that contains tempi etc.
I can get it to work for one line (thanks to adviace on this list 
earlier) but the folowing example givea an error.


exaglob1.ly:13:8: error: syntax error, unexpected \\context

===
\version 2.8.5
\include english.ly

globalpar = { s1 * 2  | \mark \default }
continuoLeftMusic = { a1 b c d e f }
continuoRightMusic = { a1 b c d e f }

\score
{
\context Staff = rightHand
 \globalpar \clef bass \continuoRightMusic 

\context Staff = leftHand
 \globalpar \clef bass \continuoLeftMusic 

}


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Printing tempo marks on every part

2006-08-27 Thread Andrew Black - lists

yota moteuchi wrote:

concerning the bars you may use a global part containing only skips and
bars
you can then combine them as you wish (in a part or for all the parts).
have a look at
http://www.mutopiaproject.org/ftp/BachJS/BWV1068/bach-air/bach-air-lys.zip
or
http://www.lilypond.org/doc/v2.6/input/mutopia/E.Satie/petite-ouverture-a-danser.ly.txt 



Thanks for the suggestion. It looks the right thing to do but I seem to 
be missing a detail.
My (rather simplifed example below) generates an extra stave which I 
don't want).


===
globalpar = { s1 * 2  | \mark \default }
continuoLeftMusic = { a1 b c d e f }

\score {

  \context PianoStaff 
\globalpar
   \context Staff = leftHand {
  \clef bass \continuoLeftMusic }
   
 

 \layout {
 }
}



___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Muliple versions of Lilypond

2006-08-27 Thread Andrew Black - lists

Hi
Is it possible to install mulitple versions of Lilypond (on Mandrake 
10.1 Linux).

Any pitfalls to beware of

Andrew


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Printing tempo marks on every part

2006-08-25 Thread Andrew Black - lists

I would like to specify things like tempo marks, double bars, rehearsal
makrs in one part only (say piano part) but print them on very part.
I want to print as below but only have to specify the details in one part

==
(Vn 1 part: )
 Andante ... [A]   . [B]
Vn 1 music .
==
(Vn 2 part: )
 Andante ... [A]   . [B]
Vn 2 music .
==
(Score: )
 Andante ... [A]   . [B]
Vn 1 music .
Vn 2 music .
etc etc


___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user