چگونه میتوان برای خانه های یک جدول پانویس هایی مجزا از متن ایجاد کرد؟ به گونه ای که توضیحات این پانویس ها بلافاصله در زیر جدول بیان شود. و شماره پانویس جدول از شماره پانویس های موجود در متن مجزا باشد.
\documentclass{report}
\usepackage{amsmath,amstext,epsfig,amssymb,verbatim,amsopn,cite,subfigure,multirow}
\hyphenation{op-tical net-works semi-conduc-tor}
\begin{document}
\section{Introduction}
In this question we want to have separate footnote in table\footnote{ft-text} from other part of the text.
\begin{tabular}{|l|c|c|}
\hline
A & 1 & 2\footnote{ft1}\\
\hline
B & 2 & 1\footnote{ft2} \\
\hline
C & 3 & 3 \\
\hline
\end{tabular}
Other part of text\footnote{ft-text2}.
\end{document}