Re: Naturals & Accidental_engraver

2009-08-23 Thread Valentin Villenave
> Simon Mackenzie wrote:
>
>> I will be looking myself, but if anyone can suggest a good web site
>> which would aid me in grasping music theory this would also be much
>> appreciated.

GNU Solfege is a Free Software program (like LilyPond) that could
provide you with useful exercizes:
http://solfege.org/

Regards,
Valentin


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


Re: Scheme function for ossia

2009-08-23 Thread Jonathan Wilkes
Would probably help if I showed the file :).  I'm guessing the problem 
is it's not allowed to use a variable inside of the braces after the \with 
command, but I don't understand why.

-Jonathan

\version "2.12.2"

ossia = #(define-music-function (parser location staffName)
  (string?)
#{
alignAboveContext = #$staffName
\remove "Time_signature_engraver"
fontSize = #-3
\override StaffSymbol #'staff-space = #(magstep -3)
\override StaffSymbol #'thickness = #(magstep -3)
#})

myMelody = \new Staff = main {
\relative c' {
c8 d e f g a b c |
<<
{
d1
}
{
\new Staff \with { \ossia #'main } {
\relative c' {
\clef bass
c4 d e f
}
}   
}
>>
}
}

\score {
\myMelody
\layout {
  }
}


  


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


Re: Naturals & Accidental_engraver

2009-08-23 Thread Mark Polesky
Simon Mackenzie wrote:

> I will be looking myself, but if anyone can suggest a good web site  
> which would aid me in grasping music theory this would also be much  
> appreciated.

http://www.dolmetsch.com/theoryintro.htm

- Mark



  


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


Re: Naturals & Accidental_engraver

2009-08-23 Thread Simon Mackenzie

For basic music theory this site seems helpful...

http://www.8notes.com/

Simon

On 24/08/2009, at 09:28, Simon Mackenzie wrote:


Hi All,
Yes by now you would have figured out I am musically challenged,  
seriously musically challenged.


1) My initial task was to generate a result which would demonstrate  
to my clients the viability of my proposal for standardized music  
sheets across multiple language groups in our church. This has now  
been achieved and the lights are turning on.


2) As people have rightly noted there is no need to remove the  
Accidental_engraver if the music notes are entered correctly. I am  
now in the process of correcting this deficiency because step one  
has been achieved and I now have the time to figure out how music  
theory works. (Assuming I even have the music terms correct?!)


I will be looking myself, but if anyone can suggest a good web site  
which would aid me in grasping music theory this would also be much  
appreciated.


And for those who missed the point, telling people what to do and  
teaching people what to do and why are not the same thing.
Many thanks to those who have taught me what to do and why, it is  
equipping me to be a teacher of others.


Reverend Simon Mackenzie
Lutheran Church of Australia

On 23/08/2009, at 22:19, Patrick Schmidt wrote:


Hi Simon,

if you send me your file "V-CHW066.ly" I'll have a look at it.

Cheers,
patrick

 Original-Nachricht 

Datum: Fri, 21 Aug 2009 09:21:19 +0700
Von: Simon Mackenzie 
An: "James E. Bailey" 
CC: lilypond-user@gnu.org
Betreff: Re: Naturals & Accidental_engraver



I'm lost on this one...

If I place the override in the voice context I end up with the
following which is nothing like what I need to achieve.

NB: I have already added the force natural symbol "!" to the needed
notes.

\score {
<<
\new ChordNames {
\include "music/chords/C-CHW066.ly"
}
\new Staff <<
\new Voice = "voiceOne" {
\once \override Staff.Accidental #'stencil = ##f
\include "music/voice/V-CHW066.ly"
}
\new Lyrics \lyricsto "voiceOne" {
\include "music/lyrics/LUA/L-CHW066-01.ly"
}
\new Lyrics \lyricsto "voiceOne" {
\include "music/lyrics/LUA/L-CHW066-02.ly"
}
>>
>>
\layout {
\context {
\Score
\remove "Bar_number_engraver" % Removes automatic bar 
number
engraving for each staff line
}
}
%   \midi { }
}



Simon

On 20/08/2009, at 23:17, James E. Bailey wrote:


I'm guessing you're turning off accidental engraver at either staff
or global level. I don't really understand why you're turning off
accidental engraver at all, but you can probably achieve what you
want by removing the stencil in the music. i.e., with \once
\override Staff.Accidental_engraver #'stencil = ##f

On 20.08.2009, at 18:10, Simon Mackenzie wrote:

If I turn Accidental_engraver off no accidentals appear as  
expected

but then if leave it on I don't seem to be able to manually set
naturals with ! and exclude / turn off everything else.

Simon

On 20/08/2009, at 22:48, James E. Bailey wrote:



On 20.08.2009, at 17:39, Simon Mackenzie wrote:


I haven't been able to figure out how to replicate the three
naturals on this music sheet using Lilypond script?
Any ideas?



Simon

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



This should be very straightforward. What have you tried and what
hasn't worked? Could you show it in one measure?

James E. Bailey







James E. Bailey







--
Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla  
Firefox 3 -

sicherer, schneller und einfacher! http://portal.gmx.net/de/go/atbrowser




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




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


Scheme function for ossia

2009-08-23 Thread Jonathan Wilkes
This is my first attempt at a scheme function, just to make a shortcut 
so that I don't have to type out all the overrides when making an ossia 
staff.  But I get an unexpected string error when I try to compile it.

Any advice on why this doesn't work?

Thanks,
Jonathan


  


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


re: excessively large PDF files produced when lilypond script contains CJK characters

2009-08-23 Thread 胡海鹏 - Hu Haipeng
Hello,
  I'm a Chinese musician, and I know how to produce smaller pdf files. I wrote 
a song accompanied by orchestra last year. The full score has 13 pages, but the 
size of the pdf is only 1.30M. If you're running Windows, please use your 
system's built-in fonts (please use a tool to view the real name of the font, 
not the filename). For me, I use "仿宋_GB2312". And turn off tagline and 
point-and-click. Then you'll get a smaller file. If you need an example, I'll 
send a full package of both source and pdf privately, because the mailinglist 
can only accept 46Kb a time. Or you can see my other music with Chinese 
headings here:
http://icking-music-archive.org/ByComposer/Haipeng.php
Regards
Haipeng


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


Re: Naturals & Accidental_engraver

2009-08-23 Thread Simon Mackenzie

Hi All,
Yes by now you would have figured out I am musically challenged,  
seriously musically challenged.


1) My initial task was to generate a result which would demonstrate to  
my clients the viability of my proposal for standardized music sheets  
across multiple language groups in our church. This has now been  
achieved and the lights are turning on.


2) As people have rightly noted there is no need to remove the  
Accidental_engraver if the music notes are entered correctly. I am now  
in the process of correcting this deficiency because step one has been  
achieved and I now have the time to figure out how music theory works.  
(Assuming I even have the music terms correct?!)


I will be looking myself, but if anyone can suggest a good web site  
which would aid me in grasping music theory this would also be much  
appreciated.


And for those who missed the point, telling people what to do and  
teaching people what to do and why are not the same thing.
Many thanks to those who have taught me what to do and why, it is  
equipping me to be a teacher of others.


Reverend Simon Mackenzie
Lutheran Church of Australia

On 23/08/2009, at 22:19, Patrick Schmidt wrote:


Hi Simon,

if you send me your file "V-CHW066.ly" I'll have a look at it.

Cheers,
patrick

 Original-Nachricht 

Datum: Fri, 21 Aug 2009 09:21:19 +0700
Von: Simon Mackenzie 
An: "James E. Bailey" 
CC: lilypond-user@gnu.org
Betreff: Re: Naturals & Accidental_engraver



I'm lost on this one...

If I place the override in the voice context I end up with the
following which is nothing like what I need to achieve.

NB: I have already added the force natural symbol "!" to the needed
notes.

\score {
<<
\new ChordNames {
\include "music/chords/C-CHW066.ly"
}
\new Staff <<
\new Voice = "voiceOne" {
\once \override Staff.Accidental #'stencil = ##f
\include "music/voice/V-CHW066.ly"
}
\new Lyrics \lyricsto "voiceOne" {
\include "music/lyrics/LUA/L-CHW066-01.ly"
}
\new Lyrics \lyricsto "voiceOne" {
\include "music/lyrics/LUA/L-CHW066-02.ly"
}
>>
>>
\layout {
\context {
\Score
\remove "Bar_number_engraver" % Removes automatic bar 
number
engraving for each staff line
}
}
%   \midi { }
}



Simon

On 20/08/2009, at 23:17, James E. Bailey wrote:


I'm guessing you're turning off accidental engraver at either staff
or global level. I don't really understand why you're turning off
accidental engraver at all, but you can probably achieve what you
want by removing the stencil in the music. i.e., with \once
\override Staff.Accidental_engraver #'stencil = ##f

On 20.08.2009, at 18:10, Simon Mackenzie wrote:


If I turn Accidental_engraver off no accidentals appear as expected
but then if leave it on I don't seem to be able to manually set
naturals with ! and exclude / turn off everything else.

Simon

On 20/08/2009, at 22:48, James E. Bailey wrote:



On 20.08.2009, at 17:39, Simon Mackenzie wrote:


I haven't been able to figure out how to replicate the three
naturals on this music sheet using Lilypond script?
Any ideas?



Simon

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



This should be very straightforward. What have you tried and what
hasn't worked? Could you show it in one measure?

James E. Bailey







James E. Bailey







--
Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla  
Firefox 3 -

sicherer, schneller und einfacher! http://portal.gmx.net/de/go/atbrowser




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


Re: boxed measures

2009-08-23 Thread Matthieu Jacquot

It's maybe better like that :

\version "2.13.3"
notes = \relative c' {
  \override TextScript #'extra-offset = #'(4 . 10)
c''-\markup {  
  \box \pad-markup #5 
   { "  " }
 }  
a f d c  a f d
}

\score { 
\notes
  \layout {  }
}

Regards,
Matthieu

http://www.nabble.com/file/p25108082/test.png test.png 


-
http://theshadylanepublishing.com/ The Shady Lane Publishing 
-- 
View this message in context: 
http://www.nabble.com/boxed-measures-tp25101042p25108082.html
Sent from the Gnu - Lilypond - User mailing list archive at Nabble.com.



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


horizontal synchronisation of notation in drum mode

2009-08-23 Thread Brian Lloyd
Dear Colleagues,

A relative newcomer to Lilypond, I am v. pleased to be able to notate drums
in drum mode, and / but—

Need your guidance on getting notation on beat in upper and lower voice to
same horizontal location.


I am typesetting swing-feel cymr in the upper voice and writing figures
involving bd, sn & hhp in the lower voice.

Decided to use simple eighths notation in upper voice to reduce problems,
but still some ambiguity in placement of notes, even when eights in both
upper and lower voice.


Things getting slightly more out of hand when typesetting triplet figures in
lower voice, and need to do this.


Also— how to introduce slightly more space to make things more legible? I
want to simply s-t-r-e-t-c-h things out a little.


Have checked documentation, but still a little unclear.

Directions to relevant sections would be most appreciated, if that's all it
takes.

Your help would be appreciated.



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


Fw: Text Spanner with more than two words

2009-08-23 Thread Jonathan Wilkes
Oops, I posted this to the devlist by mistake:

--- On Sun, 8/23/09, Jonathan Wilkes  wrote:

> From: Jonathan Wilkes 
> Subject: Text Spanner with more than two words
> To: lilypond-de...@gnu.org
> Date: Sunday, August 23, 2009, 8:03 PM
> Hello,
>      What's the easiest way to do text
> spanners with, say, three or 
> four words?  So something like:
> 
> accel.---meno mosso---rit.---a tempo
> 
> I've tried using above-staff decrescendo and setting the
> text as needed, 
> which does work, but then I have to create another layer if
> there are also 
> hairpins.
> 
> I checked NR and snippets, but couldn't find
> anything.  Is there a better 
> solution?
> 
> Thanks,
> Jonathan
> 
> 
>       
> 





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


RE: boxed measures

2009-08-23 Thread Nick Payne
The box could be drawn with Postscript. Here's an example of drawing large
square brackets with Postscript. Easily modifiable to draw a box:

 

\version "2.12.1"

 

#(define lbracket "0.25 setlinewidth 

0 setlinejoin 

0 setlinecap 

0.5 -2 moveto

-2 0 rlineto

0 8.8 rlineto 

2 0 rlineto 

stroke")

#(define rbracket "0.25 setlinewidth 

0 setlinejoin 

0 setlinecap 

0.5 -2 moveto

2 0 rlineto

0 8.8 rlineto 

-2 0 rlineto 

stroke")

 

\relative c' {

c4-\markup { \postscript #lbracket } c c c-\markup {
\postscript #rbracket }

}

 

Nick Payne

 

From: lilypond-user-bounces+nick.payne=internode.on@gnu.org
[mailto:lilypond-user-bounces+nick.payne=internode.on@gnu.org] On Behalf
Of Stefan Thomas
Sent: Sunday, 23 August 2009 5:43 PM
To: lilypond-user
Subject: boxed measures

 

Dear community,
I would like to do something like You can see in the attached image.
I don't mean the feathered beams (I know how this can be done) but the boxed
bars, followed by the dotted lines.
I have no idea how to do this in Lilypond.
A hint would be great!
Thanks
Stefan 

No virus found in this incoming message.
Checked by AVG - www.avg.com
Version: 8.5.409 / Virus Database: 270.13.64/2318 - Release Date: 08/22/09
18:04:00

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


Re: copying error messages in Frescobaldi

2009-08-23 Thread Wilbert Berendsen
Op dinsdag 18 augustus 2009, schreef Federico Bruni:
> How can I copy the error message in Frescobaldi?
> ctrl+C  or  ctrl+shift+C don't work..
>
> Where can I find the log file?
>
>
> Thanks in advance,

Just select the LilyPond messages with the mouse and paste them where you want 
them with the middle mouse button.

best regards,
Wilbert Berendsen

-- 
Frescobaldi, LilyPond editor for KDE: http://www.frescobaldi.org/


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


Re: boxed measures

2009-08-23 Thread Valentin Villenave
2009/8/23 Mark Polesky :
> Ugh. Kludge-o-rama. Ghost voices, hidden notes, clashing
> note-columns, spacing nightmares... I'll see if someone
> has a better idea on -devel, but in the meantime, this is
> an option.

A quite ugly one then -- no offence :-)

Let's make this official, even with some money on the table:
http://code.google.com/p/lilypond/issues/detail?id=833

Regards,
Valentin


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


Re: boxed measures

2009-08-23 Thread Matthieu Jacquot

Maybe we could try in this way :


\version "2.13.3"
notes = \relative c' {
  %\override RehearsalMark #'Y-offset = #5.5
  c''-\markup  {
\box {  \score {
  \new Staff \with {
\remove Time_signature_engraver
\remove Clef_engraver
\remove Staff_symbol_engraver
  }
  {\hideNotes c'' a f d }
  \layout { } } }
}

a f d
}

\score {
\notes
  \layout {}

I wasn't able after to move the box but it mustn't be impossible.


--
Matthieu JACQUOT
The Shady Lane Publishing:
http://theshadylanepublishing.com (nouveau site!)



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


Re: Accidental_engraver & Naturals

2009-08-23 Thread Graham Percival
On Thu, Aug 20, 2009 at 10:03:13PM +0700, Simon Mackenzie wrote:
> I haven't been able to figure out how to replicate the three naturals on 
> this music sheet using Lilypond script?
> Any ideas?

Yes.  My idea is that you should read:
http://lilypond.org/doc/v2.12/Documentation/user/lilypond-learning/Accidentals-and-key-signatures

You DO NOT NEED to use any fancy overrides.  You DO NOT NEED to
change the Accidental_engraver.  You DON'T EVEN NEED to use a ! in
your .ly file.

Just read "Warning: key signatures and pitches".  You might also
need to read the music glossary to learn some basic musical terms,
like "accidental" and "key signature".

- Graham


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


Re: \context for named Staff

2009-08-23 Thread Marc Hohl

Trevor Daniels schrieb:


Marc Hohl wrote Saturday, August 22, 2009 7:30 PM



Jay Anderson schrieb:

[...]
 So what do you think? Should the "SmallStaff" just
be left as a snippet?

If it is a snippet ideally I'd want to do something like:

\include "small_staff.lyi"
\score {
  \new SmallStaff {...}
}

How would one make small_staff.lyi so this worked? This way it would
be bundled with the other global variables. The only way I found was
to do this:

small_staff.lyi
=
\context {
  \Score
  \accepts "SmallStaff"
}
\context {
  \Staff
  \type "Engraver_group"
  \name "SmallStaff"
  \alias "Staff"

  fontSize = #-3
  \override StaffSymbol #'staff-space = #(magstep -3)
}



As the discussion here seems to be stuck, I want to push it a bit :)


I'm not keen on including this in the sources
as it is not a complete solution.  For example,
it does not permit scaled lyrics to be attached
to a voice in the staff, as might be required
in an ossia or piano reduction.  For that you
would need a scaled StaffGroup and a scaled
PianoStaff.  And what about scaled chords, etc?
The present documented method using \with
is cumbersome but general.

Ok, I didn't think about lyrics etc. So I agree with you,
an incomplete solution should not be included in the sources.

Marc



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


Re: [m.tarensk...@zonnet.nl: translation error]

2009-08-23 Thread Mark Polesky
Martin Tarenskeen wrote:

> I bumped into a really ugly dutch translation error message:
> 
> "geforceerde breuk werd opgeheft door andere gebeurtenis, zou je 
> maatcontrole moeten gebruiken?"
> 
> (The dutch people on this list will know what the error is - I hope ;-) 
> What's the right place to report such translation errors ?

Probably the developers' mailing list (lilypond-de...@gnu.org).
Jan wrote that particular one two years ago, you might e-mail him:
http://git.savannah.gnu.org/gitweb/?p=lilypond.git;a=commit;h=03f914

- Mark



  


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


Re: boxed measures

2009-08-23 Thread Mark Polesky
Mark Polesky wrote:

> A while back, I did exactly that. I'll look for it and 
> get back to you...

Ugh. Kludge-o-rama. Ghost voices, hidden notes, clashing
note-columns, spacing nightmares... I'll see if someone
has a better idea on -devel, but in the meantime, this is
an option.

Let me know if you have any questions.
- Mark

\version "2.13.4"

\score {
  \new Staff <<
\new Voice \relative c''' {
  \once \override HorizontalBracket #'direction = #UP
  \override HorizontalBracket #'Y-offset = #5.5
  \override HorizontalBracket #'shorten-pair = #'(-1 . -0.75)
  c\startGroup a f d\stopGroup
}
\new Voice \relative c''' {
  \override HorizontalBracket #'direction = #DOWN
  \override HorizontalBracket #'Y-offset = #-3.5
  \override HorizontalBracket #'shorten-pair = #'(-1 . -0.75)
  \hideNotes c\startGroup a f d\stopGroup \unHideNotes
}
  >>
  \layout {
\context {
  \Voice
  \override NoteColumn #'ignore-collision = ##t
  \consists "Horizontal_bracket_engraver"
  \override HorizontalBracket #'thickness = #4
  \override HorizontalBracket #'bracket-flare = #'(0 . 0)
  \override HorizontalBracket #'Y-extent = #'(0 . 0)
  % always overlap bracket edges (just past middle line)
  \override HorizontalBracket #'edge-height =
#(lambda (grob)
   (let* ((Y-offset (ly:grob-property grob 'Y-offset))
  (height (abs (+ 0.5 (abs Y-offset)
 (cons height height)))
}
  }
}



  


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


[m.tarensk...@zonnet.nl: translation error]

2009-08-23 Thread Martin Tarenskeen

I bumped into a really ugly dutch translation error message:

"geforceerde breuk werd opgeheft door andere gebeurtenis, zou je 
maatcontrole moeten gebruiken?"

(The dutch people on this list will know what the error is - I hope ;-) 
What's the right place to report such translation errors ?

-- 

Martin Tarenskeen


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


Re: boxed measures

2009-08-23 Thread Mark Polesky
Valentin Villenave wrote:

> I suspect this might be achieveable by using the
> Horizontal_bracket_engraver (see NR1.7.2.3). It would require to
> override the HorizontalBracket #'stencil property and replace it with
> a Scheme callback but I don't know exactly how to do it.
> 
> It would certainly be a nice feature to have!

A while back, I did exactly that. I'll look for it and 
get back to you, but ultimately, I don't like that method
because it's kludgy and it seems like an abuse of a
feature. I'd prefer something dedicated to that function,
like a Box_engraver or something, but I wouldn't know 
where to start. Now I'll see if I can 
find it.

- Mark



  


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


Re: boxed measures

2009-08-23 Thread Stefan Thomas
Dear Valentin,
that sounds a bit too difficult for me.
I think I will try it with the help of scribus, in the meantime.

2009/8/23 Valentin Villenave 

> 2009/8/23 Stefan Thomas :
> > I would like to do something like You can see in the attached image.
>
> I suspect this might be achieveable by using the
> Horizontal_bracket_engraver (see NR1.7.2.3). It would require to
> override the HorizontalBracket #'stencil property and replace it with
> a Scheme callback but I don't know exactly how to do it.
>
> It would certainly be a nice feature to have!
>
> Regards,
> Valentin
>
___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user


Re: Naturals & Accidental_engraver

2009-08-23 Thread Patrick Schmidt
Hi Simon,

if you send me your file "V-CHW066.ly" I'll have a look at it.

Cheers,
patrick

 Original-Nachricht 
> Datum: Fri, 21 Aug 2009 09:21:19 +0700
> Von: Simon Mackenzie 
> An: "James E. Bailey" 
> CC: lilypond-user@gnu.org
> Betreff: Re: Naturals & Accidental_engraver

> I'm lost on this one...
> 
> If I place the override in the voice context I end up with the  
> following which is nothing like what I need to achieve.
> 
> NB: I have already added the force natural symbol "!" to the needed  
> notes.
> 
> \score {
>   <<
>   \new ChordNames {
>   \include "music/chords/C-CHW066.ly"
>   }
>   \new Staff <<
>   \new Voice = "voiceOne" {
>   \once \override Staff.Accidental #'stencil = ##f
>   \include "music/voice/V-CHW066.ly"
>   }
>   \new Lyrics \lyricsto "voiceOne" {
>   \include "music/lyrics/LUA/L-CHW066-01.ly"
>   }
>   \new Lyrics \lyricsto "voiceOne" {
>   \include "music/lyrics/LUA/L-CHW066-02.ly"
>   }
>   >>
>   >>
>   \layout {
>   \context {
>   \Score
>   \remove "Bar_number_engraver" % Removes automatic bar 
> number  
> engraving for each staff line
>   }
>   }
> % \midi { }
> }
> 
> 
> 
> Simon
> 
> On 20/08/2009, at 23:17, James E. Bailey wrote:
> 
> > I'm guessing you're turning off accidental engraver at either staff  
> > or global level. I don't really understand why you're turning off  
> > accidental engraver at all, but you can probably achieve what you  
> > want by removing the stencil in the music. i.e., with \once  
> > \override Staff.Accidental_engraver #'stencil = ##f
> >
> > On 20.08.2009, at 18:10, Simon Mackenzie wrote:
> >
> >> If I turn Accidental_engraver off no accidentals appear as expected  
> >> but then if leave it on I don't seem to be able to manually set  
> >> naturals with ! and exclude / turn off everything else.
> >>
> >> Simon
> >>
> >> On 20/08/2009, at 22:48, James E. Bailey wrote:
> >>
> >>>
> >>> On 20.08.2009, at 17:39, Simon Mackenzie wrote:
> >>>
>  I haven't been able to figure out how to replicate the three  
>  naturals on this music sheet using Lilypond script?
>  Any ideas?
> 
>  
> 
>  Simon
> 
>  ___
>  lilypond-user mailing list
>  lilypond-user@gnu.org
>  http://lists.gnu.org/mailman/listinfo/lilypond-user
> >>>
> >>>
> >>> This should be very straightforward. What have you tried and what  
> >>> hasn't worked? Could you show it in one measure?
> >>>
> >>> James E. Bailey
> >>>
> >>>
> >>>
> >>
> >
> > James E. Bailey
> >
> >
> >
> 

-- 
Jetzt kostenlos herunterladen: Internet Explorer 8 und Mozilla Firefox 3 -
sicherer, schneller und einfacher! http://portal.gmx.net/de/go/atbrowser


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


Re: boxed measures

2009-08-23 Thread Valentin Villenave
2009/8/23 Stefan Thomas :
> I would like to do something like You can see in the attached image.

I suspect this might be achieveable by using the
Horizontal_bracket_engraver (see NR1.7.2.3). It would require to
override the HorizontalBracket #'stencil property and replace it with
a Scheme callback but I don't know exactly how to do it.

It would certainly be a nice feature to have!

Regards,
Valentin


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


RE: Vertifal alignment of fingering and accent

2009-08-23 Thread Nick Payne
> -Original Message-
> From: lilypond-user-bounces+nick.payne=internode.on@gnu.org
> [mailto:lilypond-user-bounces+nick.payne=internode.on@gnu.org] On
> Behalf Of Mark Polesky
> Sent: Sunday, 23 August 2009 11:29 AM
> To: Nick Payne; lilypond
> Subject: Re: Vertifal alignment of fingering and accent
> 
> Nick Payne wrote:
> 
> > The following puts the fingering on the d above the accent rather
> than
> > below. I've played around with various values for script-priority and
> > outside-staff-priority for both fingering and accent without managing
> to
> > change the order. Any suggestions on how to rearrange them to have
> the
> > fingering below the accent without resorting to tweaking both?
> >
> > \version "2.13.3"
> > \relative c'' {
> >   \set fingeringOrientations = #'(left)
> >   \time 2/4
> >   a4 ->
> > }
> 
> \override Fingering #'script-priority = #-101
> 
Thanks. I find that setting that value also gets rid of the problem in
single staff polyphony where fingering on the left in one voice gets spaced
too far from the note by an accidental on a note in another voice.

Nick



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


Re: excessively large PDF files produced when lilypond script contains CJK characters

2009-08-23 Thread Michel Villeneuve
2009/8/23 Daryna Baikadamova :
> Whenever I have CJK characters in the title or composer fields in the
> header, the generated PDF file is always at least 2MB, even if there
> is only one page, but when I remove the CJK characters, it shrunk back
> to about 300kB.  How can I control the PDF file size?
>
> Thanks!
>
> Daryna

I asked the same question
http://lists.gnu.org/archive/html/lilypond-user/2009-08/msg00411.html
It's a bug in ghostscript. version 8.70 should fix this but it does not...


-- 
Michel Villeneuve


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


excessively large PDF files produced when lilypond script contains CJK characters

2009-08-23 Thread Daryna Baikadamova
Whenever I have CJK characters in the title or composer fields in the
header, the generated PDF file is always at least 2MB, even if there
is only one page, but when I remove the CJK characters, it shrunk back
to about 300kB.  How can I control the PDF file size?

Thanks!

Daryna


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


Re: \context for named Staff

2009-08-23 Thread Trevor Daniels


Marc Hohl wrote Saturday, August 22, 2009 7:30 PM



Jay Anderson schrieb:

[...]
 So what do you think? Should the "SmallStaff" just
be left as a snippet?

If it is a snippet ideally I'd want to do something like:

\include "small_staff.lyi"
\score {
  \new SmallStaff {...}
}

How would one make small_staff.lyi so this worked? This way it 
would
be bundled with the other global variables. The only way I found 
was

to do this:

small_staff.lyi
=
\context {
  \Score
  \accepts "SmallStaff"
}
\context {
  \Staff
  \type "Engraver_group"
  \name "SmallStaff"
  \alias "Staff"

  fontSize = #-3
  \override StaffSymbol #'staff-space = #(magstep -3)
}


As the discussion here seems to be stuck, I want to push it a bit 
:)


I'm not keen on including this in the sources
as it is not a complete solution.  For example,
it does not permit scaled lyrics to be attached
to a voice in the staff, as might be required
in an ossia or piano reduction.  For that you
would need a scaled StaffGroup and a scaled
PianoStaff.  And what about scaled chords, etc?
The present documented method using \with
is cumbersome but general.


1) What about the name?
 SmallStaff? CueStaff? QuoteStaff?


Definitely not CueStaff or QuoteStaff, as it
would not be used for cue or quoted notes.
ScaledStaff?

2) There seems to be only one reference for font size and staff 
size,   \override StaffSymbol #'staff-space = #2/3

   fontSize = #(magnification->font-size 2/3)
 as Mark Polesky pointed out. Is this widely acceped?


If it is to be useful there should be a way
of specifying the scale of the reduction (or
expansion).

3) Should this definition go to ly/engraver-init.ly, or should a 
seperate file

  be provided?


It should go in the LSR

4) Where should this feature be documented? Is input.itely the 
right place?


No.  If a scaled staff definition is to be
included in the sources (and I oppose this)
there are many places in the documentation that
would need to be changed.  There's no point
in making this change unless all the documentation
is changed to use it.  So at least the following
need attention:

NR 1.6.1 for the basic definition
NR 1.6.2 Ossia staves
NR 5.1.1 Contexts explained
LM 4.3.2 Size of objects (extensively)
LM 4.3.3 Length and thickness of objects

plus a number of snippets used in the docs
which scale staves.

Trevor



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


boxed measures

2009-08-23 Thread Stefan Thomas
Dear community,
I would like to do something like You can see in the attached image.
I don't mean the feathered beams (I know how this can be done) but the boxed
bars, followed by the dotted lines.
I have no idea how to do this in Lilypond.
A hint would be great!
Thanks
Stefan
<>___
lilypond-user mailing list
lilypond-user@gnu.org
http://lists.gnu.org/mailman/listinfo/lilypond-user