I have a document in which I generally do not want to number the chapters, sections and subsections. Only one section should contain roman numbered subsections, how do I achieve that? I tried
\documentclass{report}
\setcounter{secnumdepth}{-1}
\begin{document}
\chapter{mwe}
\section{unnumbered subsections}
\subsection{unnumbered}
\section{roman numbered subsections}
\setcounter{secnumdepth}{2}
\renewcommand{\thesubsection}{\textnormal{\roman{subsection}}.}
\subsection{roman one}
\subsection{roman two}
\end{document}
However, this gives me an error at the \section{roman one} stating: Missing number treating as zero. Any suggestions for correction or ideas on alternative approaches?
articlebefore the edit. However, you should change the base value of secnumdepth from 0 to -1, see my answer. – Stefan Kottwitz Oct 31 '11 at 09:21keyword |: That's what the tags are for, they get shown directly underneath the question title on the main page. – Jake Nov 01 '11 at 07:09