私は文書を持っています定理s、意味s、命題など
このドキュメントには変数があります。たとえば、次のようになります。\def\idChapter{25}
私はすべての定理s、意味s、命題同じ順序で番号が付けられ、idChapter
章として使用されます。
それで、定義 25.1それから命題25.2そして定理25.3など
手伝ってもらえますか?
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]