当我使用以下命令时
\renewcommand\thechapter{\Roman{chapter}}
将章节编号设置为罗马字体。它还会将小节编号更改为罗马字体。您知道为什么吗?
例如:它正在显示第三章,然后在小节中显示
三.4.1
请提出解决方案
答案1
可能是这个吗??
\documentclass{book}
\usepackage{remreset}
\renewcommand*\thechapter{\Roman{chapter}} \renewcommand*\thesection{\arabic{section}}
\makeatletter
\@removefromreset{section}{chapter}
\makeatother
\begin{document}
\chapter{first}
\section{alpha}
\subsection{one}
\subsection{two}
\section{beta}
\subsection{one}
\subsection{two}
\chapter{second}
\section{gamma}
\subsection{one}
\subsection{two}
\chapter{third}
\subsection{one}
\subsection{two}
\chapter*{starred}
\section{delta}
\subsection{one}
\subsection{two}
\end{document}