下面的代码创建一个以大写 I 作为章节“编号”的章节。
\documentclass{book}
\begin{document}
\setcounter{chapter}{8}%
\renewcommand{\thechapter}{\Alph{chapter}}%
\chapter{Introduction}
\begin{equation}
e = mc^2
\end{equation}
\end{document}
因此,本章中的所有方程式都将编号为 Ix(x 为本章中方程式的编号)。
我希望等式中的“I”不大写,例如:
我可以在不改变章节编号的情况下做到这一点(我想保持大写)。
谢谢!
答案1
很简单
\renewcommand\theequation{\alph{chapter}.\arabic{equation}}
通常这个定义包含\thechapter
但人们可以做任何事