On Mon, Sep 09, 2002 at 01:23:43PM +0200, Michael Abshoff wrote: > 1. If you (manually) add a footnote in an eqn-array the resulting > TeX-Code doesn't do > the job right. It does display the footnote-symbol, but eats the > footnote itself. > The attached file demonstrates that case.
This is a "feature" of LaTeX, and since we don't support yet footnotes in eqnarray, you will have to solve it yourself. A possible solution is to add the following lines to the preamble: \usepackage{footnote} \makesavenoteenv{eqnarray} > 2. Another problem arises from the following TeX-Code (produced by LyX): > sei \[ > M=\left( \begin{array}{ccc} > a_{11} & a_{12} & a_{13}\\ > a_{21} & a_{22} & a_{23}\\ > a_{31} & a_{32} & a_{33} > \end{array}\right) ,\quad a_{\mu \nu }\in \mathbb {N}\cup \left\{ > 0\right\} \footnote {Blah}\] > > Changing \[ to $$ creates corrrectly working code: I don't have a problem with the original code. Can you give a complete example ? Note that \[ is the correct command LaTeX for display equations. > 3. Finally, adding a footnote in a table produces the same result as in > case 1. For a tabular that is not in float use \usepackage{footnote} \makesavenoteenv{tabular} For a tabular in a table float, insert the tabular in a minipage (and no need to use the footnote package).