I'm preparing the appendix that contains several tables. Each of the table has a short description of the numbers in the table. I know that the \caption can be used so that the description is tied with the table. However, because I'm new to LaTex and because one of the table has a long description that contains both text and a long math equation, I typed in the description separately, i.e. not inside the \caption command. In my main.tex file, I organize things that look like below:
Code: Select all
\section*{Table 2: ABC}\label{tab:2}
\input{Table2_A}
\input{Table2_B}
\input{Table2_C}
\section*{Table 3: DEF{tab:3}
\input{Table3}
When I compiled and got the pdf output, it looked completely mysterious to me that the description for Table 3 was messed up, i.e. it doesn't sit right on top of Table 3, but instead somewhere just below Table 2, as below.
....
Table 2: ABC
Table 2A
Table 2B
Description for Table 3 %%% Problem is here - the description for Table 3 goes here, whereas Table 3 itself sits at the end
Table 2C
Table 3 itsefl sits here
I can't make sense of it. Could anyone please help???