[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 17:41:00 +0100 |
> 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)
{