Rolf von Kuhlmann wrote:
> 
> I want footnotes in a longtable, but they should appear at the end of the table, not 
>at the
> bottom of the respective pages. This seems not to be covered by any of the examples 
>in
> TableExamples.lyx .
> Is it possible, or does anybody know a workaround?

from my point of view with standard-footnotes not possible.
you can define your own footnotes with the footnote-counter.
in the table write \footnotemark in tex(red) which gives the
write number in supscript. behind the table do a

\addtocounter{footnote}{-n}

where n is the number of your footnotes in the table.
than write behind your longtable the n "footnotes"

\myFoothote{...blah...} 
\myFoothote{...blah...} 


in the latex preamble define the footnote as

\newcommand\myFootnote[1]{%
  \textsuperscript{\scriptsize\refstepcounter{footnote}\thefootnote}%
  \footnotesize #1\normalsize%
}


iy you want this with tables in a float (not for longtables) you
have to put the \myFootnotes... in the float, too.

hope, this helps

Herbert


-- 
[EMAIL PROTECTED]
http://perce.de/lyx/

Reply via email to