tengo un documento conTeoremas,Definicións,Proposicións, etc
En este documento, tengo una variable; por ejemplo:\def\idChapter{25}
quisiera todos misTeoremas,Definicións,ProposiciónSe numerarán en la misma secuencia, como idChapter
un capítulo.
Entonces,Definición 25.1entoncesProposición 25.2yTeorema 25.3, etc.
¿Me puedes ayudar?
Aquí hay un MWE. Gracias
\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}
Respuesta1
Puedes simplemente usar
\renewcommand\thetheo{\idChapter.\arabic{theo}}
Aunque probablemente no escribiría capítulos para algo en article
, book
puedes usar
\newtheorem{theo}{Theorem}[chapter]