我目前正在这样做:
\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}