我有一份文件定理年代,定义年代,主张等等
在此文档中,我有一个变量;例如:\def\idChapter{25}
我愿意尽我所能定理年代,定义年代,主张以相同的顺序进行编号,作为idChapter
章节。
所以,定义25.1然后提案 25.2和定理 25.3, ETC。
你能帮助我吗?
这是 MWE。谢谢
\documentclass{article}
\newtheorem{theo}{Theorem}
\newtheorem{defi}[theo]{Definition}
\newtheorem{prop}[theo]{Proposition}
\begin{document}
\begin{theo}
Test
\end{theo}
\begin{defi}
Test
\end{defi}
\begin{prop}
Test
\end{prop}
\end{document}
答案1
你可以使用
\renewcommand\thetheo{\idChapter.\arabic{theo}}
虽然我可能不会为某件事写章节article
,但book
你可以使用
\newtheorem{theo}{Theorem}[chapter]