0

Given following code:

\documentclass[10pt,a4paper,openany]{memoir}
\renewcommand\thesection{\arabic{section}}
\begin{document}
\part{PART}
\section{SECTION}
\subsection{SUBSECTION}
\subsubsection{SUBSUBSECTION}
\end{document}

I want no chapters. I want a 1 section, 1.1 subsection and a 1.1.2 subsubsection. And I don't want to use the documentclass article.

Columnist
  • 145

1 Answers1

2

I am not sure I have well understood your issue.

Is this what you are looking for?

\documentclass[10pt,a4paper,openany]{memoir}
\renewcommand\thesection{\arabic{section}}

\setcounter{secnumdepth}{3}

\begin{document}
\part{PART}
\section{SECTION}
\subsection{SUBSECTION}
\subsubsection{SUBSUBSECTION}
\end{document}

Result :

enter image description here

Guliup
  • 96