Re: Automatic setting custom bar lines

2012-02-16 Thread Thomas Morley
Hi Jakob, 2012/2/13 jakob lund : > 13. feb. 2012 01.54 skrev Thomas Morley : >> Hi again, >> >> perhaps you may want to use: >> >> \version "2.14.2" >> %\version "2.15.29" >> >> CustomDefaultBarLineEngraver = >> #(lambda (context) >>  (let ((glyph "|")) >>    `((acknowledgers >>      (bar-line-int

Re: Automatic setting custom bar lines

2012-02-13 Thread jakob lund
13. feb. 2012 01.54 skrev Thomas Morley : > Hi again, > > perhaps you may want to use: > > \version "2.14.2" > %\version "2.15.29" > > CustomDefaultBarLineEngraver = > #(lambda (context) >  (let ((glyph "|")) >    `((acknowledgers >      (bar-line-interface . >        ,(lambda (engraver grob source

Re: Automatic setting custom bar lines

2012-02-12 Thread Thomas Morley
Hi again, perhaps you may want to use: \version "2.14.2" %\version "2.15.29" CustomDefaultBarLineEngraver = #(lambda (context) (let ((glyph "|")) `((acknowledgers (bar-line-interface . ,(lambda (engraver grob source-engraver) (if (equal? glyph (ly:grob-property

Re: Automatic setting custom bar lines

2012-02-12 Thread Thomas Morley
Hi Hannes, 2012/2/12 Hannes Kuhnert : > Is it possible to change the style of the automatic bar lines only? try: %%{ \version "2.12.3" customDefaultBarLine = \override Staff.BarLine #'stencil = #(lambda (grob) (let ((default-bar-glyph? (equal? (ly:grob-property grob 'glyph) "|")))

Re: Automatic setting custom bar lines

2012-02-12 Thread Hannes Kuhnert
-Eluze schrieb: > David Kastrup wrote: > > Hannes Kuhnert writes: > >> I’m sometimes using half length bar lines that way: > >> | pipeSymbol = { > >> | > >> | \once \override Staff.BarLine #'bar-size = #2 > >> | \once \override Staff.BarLine #'extra-offset = #'(0 . 1) > >> | \bar "|" > >> | >

Re: Automatic setting custom bar lines

2012-02-12 Thread -Eluze
David Kastrup wrote: > > Hannes Kuhnert writes: > >> Hello, >> >> I’m sometimes using half length bar lines that way: >> | pipeSymbol = { >> | \once \override Staff.BarLine #'bar-size = #2 >> | \once \override Staff.BarLine #'extra-offset = #'(0 . 1) >> | \bar "|" >> | } >> >> and within th

Re: Automatic setting custom bar lines

2012-02-12 Thread David Kastrup
Hannes Kuhnert writes: > Hello, > > I’m sometimes using half length bar lines that way: > | pipeSymbol = { > | \once \override Staff.BarLine #'bar-size = #2 > | \once \override Staff.BarLine #'extra-offset = #'(0 . 1) > | \bar "|" > | } > > and within the voice contect: > | \set Timing.default