[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: NoteNames
From: |
Mats Bengtsson |
Subject: |
Re: NoteNames |
Date: |
Thu, 06 Dec 2001 18:39:12 +0100 |
I just realize, that this should be done differently for
different output formats. The solution below is TeX specific.
Don't know the best way to differentiate between different
output formats.
/Mats
> > Well, there is another problem with context notenames. That is that TeX
> > interpretes '' as ". This means that i.e. c''' gets displayed as c"' which
> > is
> > ugly. I don't know what to do about it, though.
> >
>
> Try the following patch!
>
> /Mats
>
> --- lily/pitch.cc.orig Thu Dec 6 17:39:30 2001
> +++ lily/pitch.cc Thu Dec 6 17:39:43 2001
> @@ -158,7 +158,7 @@
> {
> int o = octave_i_ + 1;
> while (o--)
> - s += "'";
> + s += "{'}";
> }
> else if (octave_i_ <0)
> {
>
>
>
> _______________________________________________
> Bug-lilypond mailing list
> address@hidden
> http://mail.gnu.org/mailman/listinfo/bug-lilypond