Re: custom voiceStyle

2012-10-28 Thread Gagi Petrovic
Ofcourse, thank you David. Changed my template to Voice instead of Staff and everything works like a charm! Thanks for all the help and kind regards, Gagi On 27 October 2012 10:55, David Kastrup wrote: > Gagi Petrovic writes: > > > Allright, so the problem seems to be something else. When i us

Re: custom voiceStyle

2012-10-27 Thread David Kastrup
Gagi Petrovic writes: > Allright, so the problem seems to be something else. When i use your > exact code it does work (see directMacro.png). But i'd like to use it > via my "template.ly" file which is in the > "/Applications/LilyPond.app/Contents/Resources/share/lilypond/current/ly" > directory.

Re: custom voiceStyle

2012-10-27 Thread Gagi Petrovic
Allright, so the problem seems to be something else. When i use your exact code it does work (see *directMacro.png*). But i'd like to use it via my " template.ly" file which is in the "/Applications/LilyPond.app/Contents/Resources/share/lilypond/current/ly" directory. So i could do something like

Re: custom voiceStyle

2012-10-25 Thread Phil Holmes
Sent: Wednesday, October 24, 2012 5:27 PM Subject: Re: custom voiceStyle Thank you Phil, but the same issue persists when using the macro. Gagi On 24 October 2012 16:15, Phil Holmes wrote: Try this: diamond = \override NoteHead #'style = #'diamond \relative c' {

Re: custom voiceStyle

2012-10-24 Thread Gagi Petrovic
es] as16[f g8]\) } >\new Voice {\voiceTwo \diamond d2~ d2 } > >> \oneVoice > } > > -- > Phil Holmes > > > > - Original Message - > *From:* Gagi Petrovic > *To:* Marc Hohl > *Cc:* lilypond-user@gnu.org > *Sent:* Wednesday, October 24, 2012

Re: custom voiceStyle

2012-10-24 Thread Phil Holmes
: Marc Hohl Cc: lilypond-user@gnu.org Sent: Wednesday, October 24, 2012 3:05 PM Subject: Re: custom voiceStyle example of code with macro (here both voices somehow get diamond heads): \version "2.14.2" diamond = \override NoteHead #'style = #'diamond \r

Re: custom voiceStyle

2012-10-24 Thread Gagi Petrovic
example of code *with* macro (here both voices somehow get diamond heads): \version "2.14.2" diamond = \override NoteHead #'style = #'diamond \relative c' { << \voiceOne { d2~\( d8[es] as16[f g8]\) } \new Voice {\voiceTwo \diamond d2~ d2 } >> \oneVoice } example of code *without* macro (thi

Re: custom voiceStyle

2012-10-23 Thread Marc Hohl
Am 23.10.2012 11:20, schrieb Gagi Petrovic: Ah yes, that's the info i was looking for. Thank you Marc! First i just wanted to turn the red color off, and use it in voiceTwo (to have diamond heads in one voice, while having regular heads in the other). I tried using my macro diamond = \overr

Re: custom voiceStyle

2012-10-23 Thread Gagi Petrovic
Ah yes, that's the info i was looking for. Thank you Marc! First i just wanted to turn the red color off, and use it in voiceTwo (to have diamond heads in one voice, while having regular heads in the other). I tried using my macro diamond = \override NoteHead #'style = #'diamond in voiceTwo, but

Re: custom voiceStyle

2012-10-22 Thread Marc Hohl
Am 22.10.2012 16:30, schrieb Gagi Petrovic: Dear Ponders, how can one change the defaults for voiceOneStyle? Or is it just as easy to create a custom style? Thank you! Kind regards, Gagi example of code: << \voiceOne { d2~\( d8[es] as16[f g8~]\) } \new Voice { \voiceTwo \voiceOneStyle d2~ d2 }

custom voiceStyle

2012-10-22 Thread Gagi Petrovic
Dear Ponders, how can one change the defaults for voiceOneStyle? Or is it just as easy to create a custom style? Thank you! Kind regards, Gagi example of code: << \voiceOne { d2~\( d8[es] as16[f g8~]\) } \new Voice { \voiceTwo \voiceOneStyle d2~ d2 } >> \oneVoice _