Path: utzoo!attcan!utgpu!jarvis.csri.toronto.edu!mailrus!tut.cis.ohio-state.edu!organ.cis.ohio-state.edu!lwh From: lwh@organ.cis.ohio-state.edu (Loyde W Hales) Newsgroups: comp.text Subject: Re: footnote in tabbing environment Keywords: LaTeX, Footnote Message-ID: <56219@tut.cis.ohio-state.edu> Date: 27 Jul 89 18:53:01 GMT References: <8983@thorin.cs.unc.edu> Sender: news@tut.cis.ohio-state.edu Reply-To: Loyde W Hales Organization: Ohio State University Computer and Information Science Lines: 17 In article <8983@thorin.cs.unc.edu> chu@shong.cs.unc.edu (Chu Heng) writes: > > When I used footnot in a tabbing environment, I only got the footnote >mark, while the text was missing. I used the simplest way(\footnote{..}) to >make footnote. Should I use alternatives to do that? We got TeX V2.1 for >Berkeley UNIX, if that helps. The footnote command is "fragile" in LaTeX. That is, under circumstances where it is removed (spacially) from the "area" under which it is working, it will crash. The footnote here is leaving the tabbing environment. The suggested fix is to "protect" it. Try \protect\footnote{...}. This should work. LL