定制定理計數器等

定制定理計數器等

我有一份文件定理s,定義s,主張

在這個文檔中,我有一個變數;例如:\def\idChapter{25}

我願意我的全部定理s,定義s,主張s 以相同的順序編號,作為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] 

相關內容