得到定理、命题的数字,

得到定理、命题的数字,

我想在文本中同时将定理(或命题等)编号为定理 1.1 和定理 1.A?事实上,我不知道如何将某些定理(或命题等)标记为定理 1.A、定理 1.B 等?感谢您的回答。

答案1

一种可能性是有两个具有相同名称的类似定理的结构,但一个使用阿拉伯数字,另一个使用字母数字;下面是使用该amsthm包的说明:

\documentclass{book}
\usepackage{amsthm}

\newtheorem{theo}{Theorem}[chapter]
\newtheorem{atheo}{Theorem}[chapter]

\renewcommand\theatheo{\arabic{chapter}.\Alph{atheo}}

\begin{document}

\chapter{Test Chapter}
\begin{theo}
Test theorem with arabic numbering.
\end{theo}
\begin{atheo}
Test theorem with alphabetic numbering.
\end{atheo}
\begin{atheo}
Another test theorem with alphabetic numbering.
\end{atheo}
\begin{theo}
Another test theorem with arabic numbering.
\end{theo}

\end{document}

在此处输入图片描述

相关内容