I am creating a document for school and I am required to follow a specific format for numbering - that is: "1", then "1.", then "1.1." and so on. I am a Latex and Lyx beginner and haven't found a way to do this in this specific way (or in a simple enough way that I could follow). Should I use some package? Is there some preamble thing for this? Or would I have to do this manually?
Thank you in advance for your help.
Edit 1: Posting a MWE. I am using the article document class with manually changed section numbering to start from 0. Code:
\documentclass[english]{article}
\usepackage[T1]{fontenc}
\usepackage[latin9]{inputenc}
\setcounter{secnumdepth}{4}
\setcounter{tocdepth}{4}
\makeatletter
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% User specified LaTeX commands.
\setcounter{section}{-1}
\makeatother
\usepackage{babel}
\begin{document}
\title{Title}
\author{John Doe}
\maketitle
\section{Preface}
\section{Characteristics}
\section{Division}
\subsection{Group A}
\subsubsection{A}
\subsubsection{B}
\paragraph{B1}
\section{Conclusion}
\end{document}

