我正在写一本关于矩阵我确实想要两个表格列表;其中一个是与.m
文件相关的表格,另一个是与其他主题相关的表格列表。我该如何制作这两个表格列表?
答案1
使用float
或caption
包来定义两种不同类型的浮点数。
例子:
\documentclass{article}
\usepackage{caption}
\DeclareCaptionType{mtable}[M Table][List of M Tables]
\begin{document}
\listoftables
\listofmtables
\begin{table}[ht]
foo
\caption{Foo A}
\end{table}
\begin{table}[ht]
foo
\caption{Foo B}
\end{table}
\begin{mtable}[ht]
bar
\caption{Bar A}
\end{mtable}
\begin{mtable}[ht]
bar
\caption{Bar B}
\end{mtable}
\end{document}