In the following example, I've hacked the numbering of sections in the memoir class so that I can use "sections" as "chapters". This makes them show up nicely in the table of contents. However, numbering for \label and \ref is off by one. Can this be fixed without massively revising my code?
\documentclass[article, a4paper, 12pt, oneside]{memoir}
\setlrmarginsandblock{23mm}{63mm}{*}
\setulmarginsandblock{23mm}{28mm}{*}
\setheadfoot{\onelineskip}{2\onelineskip}
\setheaderspaces{*}{1mm}{*}
\chapterstyle{plain}
\checkandfixthelayout
\setsecnumformat{\addtocounter{section}{-1} \addtocounter{chapter}{1}}
\renewcommand*\thesection{\arabic{chapter}}
\begin{document}
\tableofcontents
\section{Introduction} \label{beginning}
Beginning. Just wait til you see the end, that's in Chapter \ref{end}.
\section{Conclusion} \label{end}
End. Hopefully you read the beginning! (Chapter \ref{beginning})
\end{document}



