|
|
Welcome to the TeXnik web site Longtable |
![]() |
||||||||||
|
footnotes behind lontable |
caption and counting |
Examples |
Footer/Header |
Header/Footer |
Landscape Mode |
LTX table |
pagebreak |
Important: A lontable is designed for more than one page. It makes no sense to put a longtable inside a minipage or a floating environment!! footnotes behind lontable footnotes in a table are discribed in another page. To put the footnotes not on the bottom of the page but direct behnd the longtable, do the following steps: 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"
\myFootnote{...blah...}
\myFootnote{...blah...}
in the latex preamble define the footnote as
\newcommand\myFootnote[1]{%
\textsuperscript{\scriptsize\refstepcounter{footnote}\thefootnote}%
\footnotesize #1\normalsize%
}
if you want this with tables in a float (not for longtables) you
have to put the \myFootnotes... in the float, too.
LTXtable
caption and counting \let\myEnd\endlongtable
\renewcommand\endlongtable{\myEnd\addtocounter{table}{-1}}
if you have a mix of longtable with and without captions,
than write after every longtable without a caption:
\addtocounter{table}{-1}
|
|||||||||||