我的环境中有一些表格minipage
,但它们没有像我的其他表格那样列出\listoftables
;请参阅下面的代码。
\listoftables
.
.
.
\begin{table}
\begin{tabular}{c|c|c} %This one is classify
...
\end{tabular}
\end{table}
\begin{minipage}
\begin{tabular}{c|c|c} %This one isn't classify
...
\end{tabular}
\end{minipage}
答案1
既不table
,tabular
也不minipage
向表列表中添加某些内容。这是通过\caption
内部table
或\captionof{table}
(包caption
或capt-of
)完成的。
例子:
\documentclass{article}
\usepackage{caption}
\begin{document}
\listoftables
\newpage
\begin{table}
\caption{First table}
\begin{tabular}{l}
foo\\bar
\end{tabular}
\end{table}
\noindent
\begin{minipage}{.5\linewidth}
\captionof{table}{Second table}
\begin{tabular}{l}
foo\\bar
\end{tabular}
\end{minipage}%
\begin{minipage}{.5\linewidth}
\captionof{table}{Third table}
\begin{tabular}{l}
foo\\bar
\end{tabular}
\end{minipage}
\end{document}