我如何才能仅更改一个章节的章节编号样式?

我如何才能仅更改一个章节的章节编号样式?

我目前正在这样做:

\chapter{A Chapter}
\renewcommand\thesection{\Roman{section}}

但它会影响所有后续章节。我想只更改这一章的样式。有办法吗?还是我需要手动改回下一章?

答案1

快速解决方法:在组内使用重新定义

\documentclass{book}

\begin{document}

\begingroup
\chapter{A Chapter}
\renewcommand\thesection{\Roman{section}}
\section{test}

\endgroup

\chapter{B Chapter}
\section{test}

\end{document}

相关内容