Latex 跳过数字和表格标题

Latex 跳过数字和表格标题,latex,figure,tex,caption,Latex,Figure,Tex,Caption,如何在没有任何自动计数的情况下制作表格和图形标题 例如: \begin{table} \begin{tabular}{ll} \textbf{Name} & \textbf{Description} \\ Foo & bar \\ Foo & bar \end{tabular} \caption{Nice Table a.I.3. Number of table passed in caption, so i

如何在没有任何自动计数的情况下制作表格和图形标题

例如:

\begin{table}
    \begin{tabular}{ll}
    \textbf{Name} & \textbf{Description} \\
        Foo & bar \\
        Foo & bar
    \end{tabular}
    \caption{Nice Table a.I.3. Number of table passed in caption, so it don''t need any automatic numeration }
    \label{tab:table}
\end{table}

使用
标题
包()

它为表环境定义了
\caption*
命令。

Try