Re: bar lines at the beginning of staves

2011-12-18 Thread Thomas Morley
2011/12/19 luis jure : > thanks a lot, writing scheme functions is way above my limited abilities... you may have a look in output-lib.scm You'll see I just copied and modified the code. :) > > i still have a question, though, because i am far from understanding the > logic of lilypond syntax (a

Re: bar lines at the beginning of staves

2011-12-18 Thread luis jure
on 2011-12-19 at 00:04 Thomas Morley wrote: > Or did I misunderstand you again? not at all! your code works perfectly, and that's exactly what i wanted. now i have to study it to see how and why it works, and how to adapt it to my score. thanks a lot, writing scheme functions is way above my li

Re: bar lines at the beginning of staves

2011-12-18 Thread Thomas Morley
Hi, how about: \version "2.14.1" #(define my-bar-glyph-alist '(("|" . ("|" . "|" #(define (my-bar-line::calc-glyph-name grob) (let* ((index-cell (lambda (cell dir) (if (equal? dir 1) (cdr cell) (car cell

Re: bar lines at the beginning of staves

2011-12-18 Thread luis jure
on 2011-12-18 at 20:14 Marc Hohl wrote: >Here, LSR was my friend. Try > >http://lsr.dsi.unimi.it/LSR/Snippet?id=579 > >in combination with the second example above: > >\score { > \new StaffGroup \with { \override SystemStartBracket #'transparent >= ##t } ><< > % Must be lower than the

Re: bar lines at the beginning of staves

2011-12-18 Thread Marc Hohl
Am 18.12.2011 15:01, schrieb luis jure: on 2011-12-18 at 14:38 Thomas Morley wrote: try: \version "2.14.2" << \new Staff { c'1 d' } \new Staff { c'1 d' } \new Staff { c'1 d' } \new Staff { c'1 d' } % or \new StaffGroup \with { \override SystemStartBracket #'transparent = ##t } << \new Staff

Re: bar lines at the beginning of staves

2011-12-18 Thread luis jure
on 2011-12-18 at 14:39 David Kastrup wrote: >Can you include the source for the example that does not yet do what you >want? That way, it becomes much easier to be helpful. again, i'm sorry i wasn't clear in the description of what i want. my english is normally not very good, and it's even wo

Re: bar lines at the beginning of staves

2011-12-18 Thread luis jure
on 2011-12-18 at 14:38 Thomas Morley wrote: >try: > >\version "2.14.2" > ><< >\new Staff { c'1 d' } >\new Staff { c'1 d' } >\new Staff { c'1 d' } >\new Staff { c'1 d' } >>> > >% or > >\new StaffGroup \with { \override SystemStartBracket #'transparent = ##t } ><< >\new Staff { c'1 d' } >\new Staff

Re: bar lines at the beginning of staves

2011-12-18 Thread David Kastrup
luis jure writes: > hello list, > > i'm trying to get systems without a system start delimiter, but with a bar > line at the beginning of each staff. like in figure 1 instead of figure 2. > > i'm using \remove "System_start_delimiter_engraver", but then i don't know > how to print a line at the b

Re: bar lines at the beginning of staves

2011-12-18 Thread Thomas Morley
Hi, 2011/12/18 luis jure : > > > hello list, > > i'm trying to get systems without a system start delimiter, but with a bar > line at the beginning of each staff. like in figure 1 instead of figure 2. > > i'm using \remove "System_start_delimiter_engraver", but then i don't know > how to print a l