我是 LaTeX 新手,正在尝试理解一些事情。我的报告中有很多示例和表格,我希望能够将它们命名为示例 1.3、表 2.1、图 2.3 等。
我想知道是否有任何方法可以自动对这些进行编号,即会进行更改以适应它们所在的章节。
谢谢
答案1
\documentclass{report}
\newtheorem{example}{Example}[chapter]
\begin{document}
\chapter{zz}
zz zz zzzzzz
\begin{table}[ht]
\begin{tabular}{cc}
1&22\\
33&4
\end{tabular}
\caption{some numbers\label{ttt}}
\end{table}
\begin{example}\label{ee}
some stuff
\end{example}
see table \ref{ttt} and example \ref{ee}
\end{document}