[Tex/LaTex] Unable to change the Chapter Number to Roman numeral alone

chapterslyxroman numerals

When I am using the following command

\renewcommand\thechapter{\Roman{chapter}}

to set the chapter # to roman. It is also changing the subsection numbering to roman. Do you have any idea, why?

Example: It is showing the Chapter III
and then in the subsection it says

III.4.1

Please suggest a solution

Best Answer

Possibly this??

\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}

complex numbering in bits