I want to place a small 4x4 table as a footnote in a manuscript that I am preparing for an IEEE Journal. Has any one tried this before? How to do it? I haven't got any leads yet.
Asked
Active
Viewed 678 times
-1
-
1Welcome to Stack Overflow! For questions about LaTeX, you will get better answers at http://tex.stackexchange.com/. I'm flagging this question for migration. – Paŭlo Ebermann Aug 13 '11 at 10:39
1 Answers
1
Doesn't the "standard approach" work?
\footnote{My table: \begin{tabular}{cc} A & B \\ C & D \end{tabular}}

Paŭlo Ebermann
- 73,284
- 20
- 146
- 210
-
Thanks Paulo. \begin{table}...\end{table} does not work. This is what one of my friend explained "It creates a bounded frame for encapsulation of contents. Since Footnote is a floating encapsulation environment, so they conflict and the document properties fail to identify precedence thus resulting of non-compilation of following commands and loss of interpretation of \end{document}" – user892878 Aug 14 '11 at 04:35
-
2