for some reason i need to make many tables with latex, and non of them should have caption nor labels, but they need to be numbered like Subsection.tableNo. I have tried to use
\begin{tabular}{ccc}
...& ... & No.: \arabic{subsection}.\arabic{table}\\\hline
.....
\end{tabular}
however, because i'm using only tabular environment, the table counter will not be set, so i always get like this:
... ... 1.0
... ... 1.0
... ... 2.0
... ... 2.0
how can i get the tabular counted? thx
(and..sry for my poor english)