On Tuesday 18 July 2006 15:26, Bo Peng wrote: > + // Adding {} before ' b' fixes this. > + if (params_.type == InsetNoteParams::Comment) > + ss << "{}";Shouldn't this code be conditional? This will work for 'a[comment] b' what about the 'a[comment]b' case? In this case no space should be exported...
{} outputs nothing, just makes ' ' after it significant. In the a[comment]b case, the last line of the latex output is {}b, which is simply b. Cheers, Bo