Re: whole page rotated

2014-05-03 Thread Karol Majewski
Harm, and what if I don't want to rotate my note head along with stem-dir? How to modify your code then? Some note heads look beeter when they are not being rotated. > > If you only want noteheads of doThin-type, try: > > \version "2.18.0" > > #(define nhg > (lambda (grob) > (let* ((sti

Re: whole page rotated

2014-03-04 Thread Karol Majewski
Thanks! This is exactly what I need! Hopefully the rotation bug will be solved eventually. ___ bug-lilypond mailing list bug-lilypond@gnu.org https://lists.gnu.org/mailman/listinfo/bug-lilypond

Re: whole page rotated

2014-03-04 Thread Shane Brandes
my suprise, >> this code makes the whole page rotated if there is a line break. What I'm I >> doing wrong? >> >> #(define nhg >> (lambda (grob) >> (if >> (= 2 >> (ly:grob-property grob 'duration-log)) >>

Re: whole page rotated

2014-03-04 Thread Thomas Morley
2014-03-04 21:45 GMT+01:00 Karol Majewski : > Hi Harm, > > this is nice workaround, indeed. > > But how can I modify it to have different glyph for each duration-log? The > original code was: [...] If you only want noteheads of doThin-type, try: \version "2.18.0" #(define nhg (lambda (grob)

Re: whole page rotated

2014-03-04 Thread Karol Majewski
Hi Harm, this is nice workaround, indeed. But how can I modify it to have different glyph for each duration-log? The original code was: #(define nhg (lambda (grob) (if (= 2 (ly:grob-property grob 'duration-log)) (begin (let* ((stem (ly:grob-object grob

Re: whole page rotated

2014-03-04 Thread Thomas Morley
2014-03-04 19:19 GMT+01:00 Karol Majewski : > Hi, > > In the following code, I want to rotate custom note head. To my suprise, this > code makes the whole page rotated if there is a line break. What I'm I doing > wrong? > > #(define nhg > (lambda (grob) >

Re: whole page rotated

2014-03-04 Thread Thomas Morley
2014-03-04 20:05 GMT+01:00 Thomas Morley : > 2014-03-04 19:19 GMT+01:00 Karol Majewski : >> Hi, >> >> In the following code, I want to rotate custom note head. To my suprise, >> this code makes the whole page rotated if there is a line break. What I'm I >> d