On 28.05.08, Adrian Peter wrote:
> On Wed, May 28, 2008 at 11:30 AM, Adrian Peter <[EMAIL PROTECTED]> wrote:
> > I would need the contents of the float to appear a footnote at the
> > bottom of the page. Not clear how placing it in a float will cause
> > this to occur. Because you can tell LaTeX to place the float at the
> > bottom of the page. Look at the example. Typeset it. Does it do what
> > you want?
> Thanks! Now I see what you mean. I am going to try this out. Thanks
> again.
Another option would be to temporarily redefine the command that
creates the footnote's mark (as ERT)::
\makeatletter
[EMAIL PROTECTED]@makefnmark
[EMAIL PROTECTED]
\makeatother
% footnotetext will not advance the footnote counter
\footnotetext{footnote without number}
\makeatletter
[EMAIL PROTECTED]@makefnmark}
\makeatother
\footnote{normale Fußnote}
Günter