如何将标题页中的章节编号设置为罗马字母,但与章节编号堆叠时却变成阿拉伯字母?

如何将标题页中的章节编号设置为罗马字母,但与章节编号堆叠时却变成阿拉伯字母?

我的论文格式有问题。我们是否可以将章节编号设置为罗马数字,但当与章节编号堆叠时,会变成连续的阿拉伯数字?(不要介意页码,我想我可以处理它......)例子

答案1

一个快速而肮脏的解决方案:

\documentclass[a4paper,12pt]{book}
\begin{document}
\renewcommand{\thechapter}{\Roman{chapter}}
\renewcommand{\thesection}{\arabic{chapter}.\arabic{section}}
\renewcommand{\thesubsection}{\arabic{chapter}.\arabic{section}.\arabic{subsection}}
\tableofcontents
\newpage
\chapter{My chapter}\label{ch:one}
\section{My section}\label{ch:one:se:one}
\subsection{My subsection}\label{ch:one:se:one:sub:one}
We are in chapter~\ref{ch:one}, section~\ref{ch:one:se:one},
subsection~\ref{ch:one:se:one:sub:one}
\end{document} 

相关内容