quick fix for using LilyPond with LilyPad

2008-05-01 Thread fiëé visuëlle
Hello Developers, I still use LilyPad, and that calls LilyPond via lilycall.py (even if that's probably deprecated). In that file there's the line: env['LILYPONDPREFIX'] = prefix + '/share/lilypond/current' That let LilyPond fail with a deprecation warning. Please just change it to env['LIL

third down, diatonically

2008-05-01 Thread Stefan Thomas
Dear Lilypond-users, I would like to transpose this melody diatonically one third down: \relative c' { \clef G \key a \minor \time 4/4 \partial 2. \ e4 a b | c2.( a4 )| % 3 c2.( a4 )| g e b' c % 5 d e,( d' c) | c( b) b( a) | % 7 a ( g) f-. g-. | a4*3 } the t

Re: third down, diatonically

2008-05-01 Thread neuro
\transpose ? like \transpose c a{ \relative c' { \clef G \key a \minor \time 4/4 \partial 2. \ e4 a b | c2.( a4 )| % 3 c2.( a4 )| g e b' c % 5 d e,( d' c) | c( b) b( a) | % 7 a ( g) f-. g-. | a4*3 } } in the document lilypond-big-page.html#Transpose good luc

Remove prefatory staff lines

2008-05-01 Thread Mark Knoop
Hi all, I'm trying to remove the empty staff lines that occur when a new staff is created coinciding with a clef change in another staff - see example. I've tried various settings of explicitClefVisibility which haven't worked so far. Any ideas? As a last resort I'll just whack a white postscript

Line breaks in text markups

2008-05-01 Thread Ingo
Hi, I managed to write notes and lyrics or the first verse for a song. Looks great! Now, I would like to add the lyrics of further verses below. The only command I found for this is "\markup". Is there a possibility to add manual line breaks within the markup text? If I use two markup commands

Re: Line breaks in text markups

2008-05-01 Thread Valentin Villenave
2008/5/1 Ingo <[EMAIL PROTECTED]>: > Hi, > I managed to write notes and lyrics or the first verse for a song. Looks > great! I bet it does :-) > Now, I would like to add the lyrics of further verses below. > The only command I found for this is "\markup". > Is there a possibility to add manu

Re: Line breaks in text markups

2008-05-01 Thread Kieren MacMillan
Hi all, Is there a possibility to add manual line breaks within the markup text? Yes; it's \markup { \column { Your first line } { Your second line } } Ouch. There must be a better way, no? Do any of the LaTeX commands work (e.g., \par, or \\, etc.)? At the very least, ta

Re: Line breaks in text markups

2008-05-01 Thread Nicholas Wastell
On Thu, 1 May 2008 14:52:13 +0200 "Valentin Villenave" <[EMAIL PROTECTED]> wrote: > However, please have a look at > http://lilypond.org/doc/v2.10/Documentation/user/lilypond/More-about-stanzas I found some useful tips and ideas here: both in the Tips and the Libra

Re: Line breaks in text markups

2008-05-01 Thread Nicolas Sceaux
Le 1 mai 08 à 15:26, Kieren MacMillan a écrit : Hi all, Is there a possibility to add manual line breaks within the markup text? Yes; it's \markup { \column { Your first line } { Your second line } } Ouch. There must be a better way, no? No, this is the way, although the exam

Re: Line breaks in text markups

2008-05-01 Thread Kieren MacMillan
Hi Nicolas, Do any of the LaTeX commands work (e.g., \par, or \\, etc.)? this LilyPond, not LaTeX, why in the name of Mandos would LaTeX commands work? I was under the impression that LilyPond once used a LaTeX engine in the background -- was that never true? Thanks, Kieren. p.s. Who in

Re: Adding notes above drumstaff

2008-05-01 Thread Stan Mulder
As a drummer I've struggled to find a way to write drum kicks as well. Another term may be "rhythmic cues". This technique can be seen in almost all the drum parts of modern stage band music. Just clarify this further for others, the technique is to have a single line of small notes above the drum

Re: Line breaks in text markups

2008-05-01 Thread Nicolas Sceaux
Le 1 mai 08 à 17:45, Kieren MacMillan a écrit : Hi Nicolas, Do any of the LaTeX commands work (e.g., \par, or \\, etc.)? this LilyPond, not LaTeX, why in the name of Mandos would LaTeX commands work? I was under the impression that LilyPond once used a LaTeX engine in the background -- w

Place bar line at start of single staff

2008-05-01 Thread Adam Orris
Hello, I need to place a single bar line at the start of one staff, before the clef. This link shows a somewhat silly example of what I want: http://www.walltowallstencils.com/l/la412.gif. I have searched through the documentation and forum and I haven't found a way to do this. I appreciate y

Re: Place bar line at start of single staff

2008-05-01 Thread Rafael F. Compte
2008/5/1 Adam Orris <[EMAIL PROTECTED]>: > Hello, > > I need to place a single bar line at the start of one staff, before the clef. Hi Adam, To hide the bar lines you need the \bar"" command. Check out this section of the documentation http://lilypond.org/doc/v2.10/Documentation/user/lilypond

Re: third down, diatonically

2008-05-01 Thread Stefan Thomas
Dear neuro, this was a misunderstanding. I didn't want to transpose the example a *minor * third, I wanted to transpose a third, diatonically, in the key of c, without "black keys". This is, I think, very much used in tonal music. 2008/5/1 neuro <[EMAIL PROTECTED]>: > > \transpose ? > > like > >

Re: Place bar line at start of single staff

2008-05-01 Thread Valentin Villenave
2008/5/1 Rafael F. Compte <[EMAIL PROTECTED]>: > I couldn't find a way to print a single bar line at the beginning of > the score though. Maybe someone else could point us in the right > direction. Here you are: \new Staff \with { \consists "System_start_delimiter_engraver" \override Syst

StaffSymbol #' staff-space definition produces a SystemStartBar (?)

2008-05-01 Thread Valentin Villenave
Greetings everyone, On my way to answer Adam's recent mail, I found something really surprising: why does \new Staff \with { \override StaffSymbol #' staff-space = #1.4 } {a b c' d'} produces a single-staff system with a left barline at its beginning (which is fine, as it does help to keep t

Re: Place bar line at start of single staff

2008-05-01 Thread Neil Puttock
2008/5/1 Valentin Villenave <[EMAIL PROTECTED]>: > \new Staff \with { > \consists "System_start_delimiter_engraver" > \override SystemStartBar #'collapse-height = #1 } Bearing in mind that this only works under 2.11, shall I add a snippet for this to input/new? There's already display-brack

Re: third down, diatonically

2008-05-01 Thread Peter Chubb
> "Stefan" == Stefan Thomas <[EMAIL PROTECTED]> writes: Stefan> Dear Lilypond-users, I Stefan> would like to transpose this melody diatonically one third Stefan> down: I think you need something like the code I've been working on for trills and turns. See the code in http://www.nabble.com/Pr

Re: What's a moment?

2008-05-01 Thread Han-Wen Nienhuys
2008/4/30 Peter Chubb <[EMAIL PROTECTED]>: > Mats> A quarter note is represented as 1/4, a dotted half note as 3/4, > Mats> ... Obviously it makes sense to add and subtract moments, but > Mats> since they internally are represented as rational numbers, you > Mats> also get multiplication and d

Re: What's a moment?

2008-05-01 Thread Han-Wen Nienhuys
2008/4/30 Peter Chubb <[EMAIL PROTECTED]>: > So what *is* a moment? What do the numerator and denominator > represent? Beats? Bar numbers? Milliseconds from the start of the > piece? Inquiring minds want to know. Questions like these are probably material for the devel list. -- Han-We