I have been working with 1.4cvs and now 1.4pre4 for a while, both in Osx
and linux. I really love the improvement from 1.3.x to 1.4.x.
There are few bugs I would like to bring to the attention of the developers:
[math-macro behavior ==> Big regression w.r.t. 1.3.x]
M-x; math-macro mysum 2
\sum^{#1}_{#2}
Problems:
a) the cursor is outside the box inset (flushed left)
b) type \mysum, get the #1 and #2 fields, enter something, but the sum
does not update subscript and superscript
[It does not happen only with sum, but with everything]
I checked the generated latex and that how the math-macro is exported
\newcommand{\mysum}[2]{\sum_{\#1}^{\#2}}
I think it should be without backslashes.
[ amsart.layout ]
address is defined once in lyxmacro.inc and once in amsdef.inc. I guess
the first one is for lyxaddress and the other one for the address of
the author. Since all the styles (like current_address, email, usr,
thanks) copy address (the one in lyxmacro) the following will be put in
the preamble
\newcommand{\lyxaddress}[1]{
\par {\raggedright #1
\vspace{1.4em}
\noindent\par}
}
for each (thanks, current_address, etc). The result is that latex would
complain because of multiple definition of \lyxaddress.
I think that the style address in lyxmacro should be changed to
lyxaddress. But I am not very familiar with how layouts work.
[Once again mathinset]
Go in math-mode
1) \frac
2) \beta
You would expect beta to be in the numerator instead it is out the frac
inset. (The same happen, for example, with array, cases, etc.)